Enum arrow_format::ipc::CompressionType
source · #[repr(i8)]pub enum CompressionType {
Lz4Frame = 0,
Zstd = 1,
}
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 for CompressionType
impl PartialEq 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.
impl Copy for CompressionType
impl Eq for CompressionType
impl StructuralPartialEq for CompressionType
impl<'buf> VectorWrite<CompressionType> for CompressionType
impl WriteAs<CompressionType> for CompressionType
impl WriteAsDefault<CompressionType, CompressionType> for CompressionType
impl WriteAsOptional<CompressionType> for CompressionType
Auto Trait Implementations§
impl Freeze for CompressionType
impl RefUnwindSafe for CompressionType
impl Send for CompressionType
impl Sync for CompressionType
impl Unpin for CompressionType
impl UnwindSafe for CompressionType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more