Enum arrow_format::ipc::CompressionType
source · #[repr(i8)]
pub enum CompressionType {
Lz4Frame,
Zstd,
}
Available on crate feature
ipc
only.Variants§
Trait Implementations§
source§impl Clone for CompressionType
impl Clone for CompressionType
source§fn clone(&self) -> CompressionType
fn clone(&self) -> CompressionType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CompressionType
impl Debug for CompressionType
source§impl<'de> Deserialize<'de> for CompressionType
impl<'de> Deserialize<'de> for CompressionType
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<CompressionType> for i8
impl From<CompressionType> for i8
source§fn from(value: CompressionType) -> Self
fn from(value: CompressionType) -> Self
Converts to this type from the input type.
source§impl PartialEq<CompressionType> for CompressionType
impl PartialEq<CompressionType> for CompressionType
source§fn eq(&self, other: &CompressionType) -> bool
fn eq(&self, other: &CompressionType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CompressionType
impl Serialize for CompressionType
source§impl TryFrom<i8> for CompressionType
impl TryFrom<i8> for CompressionType
§type Error = UnknownEnumTagKind
type Error = UnknownEnumTagKind
The type returned in the event of a conversion error.