Enum arrow_format::ipc::MetadataVersion
source · #[repr(i16)]pub enum MetadataVersion {
V1 = 0,
V2 = 1,
V3 = 2,
V4 = 3,
V5 = 4,
}
Variants§
Trait Implementations§
source§impl Clone for MetadataVersion
impl Clone for MetadataVersion
source§fn clone(&self) -> MetadataVersion
fn clone(&self) -> MetadataVersion
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 MetadataVersion
impl Debug for MetadataVersion
source§impl<'de> Deserialize<'de> for MetadataVersion
impl<'de> Deserialize<'de> for MetadataVersion
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<MetadataVersion> for i16
impl From<MetadataVersion> for i16
source§fn from(value: MetadataVersion) -> Self
fn from(value: MetadataVersion) -> Self
Converts to this type from the input type.
source§impl PartialEq for MetadataVersion
impl PartialEq for MetadataVersion
source§fn eq(&self, other: &MetadataVersion) -> bool
fn eq(&self, other: &MetadataVersion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for MetadataVersion
impl Serialize for MetadataVersion
source§impl TryFrom<i16> for MetadataVersion
impl TryFrom<i16> for MetadataVersion
§type Error = UnknownEnumTagKind
type Error = UnknownEnumTagKind
The type returned in the event of a conversion error.
impl Copy for MetadataVersion
impl Eq for MetadataVersion
impl StructuralPartialEq for MetadataVersion
impl<'buf> VectorWrite<MetadataVersion> for MetadataVersion
impl WriteAs<MetadataVersion> for MetadataVersion
impl WriteAsDefault<MetadataVersion, MetadataVersion> for MetadataVersion
impl WriteAsOptional<MetadataVersion> for MetadataVersion
Auto Trait Implementations§
impl Freeze for MetadataVersion
impl RefUnwindSafe for MetadataVersion
impl Send for MetadataVersion
impl Sync for MetadataVersion
impl Unpin for MetadataVersion
impl UnwindSafe for MetadataVersion
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