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