Enum build_info::Endianness
source · pub enum Endianness {
Big,
Little,
}Expand description
CPU Endianness
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 Display for Endianness
impl Display for Endianness
source§impl Hash for Endianness
impl Hash for Endianness
source§impl Ord for Endianness
impl Ord for Endianness
source§fn cmp(&self, other: &Endianness) -> Ordering
fn cmp(&self, other: &Endianness) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<Endianness> for Endianness
impl PartialEq<Endianness> 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 PartialOrd<Endianness> for Endianness
impl PartialOrd<Endianness> for Endianness
source§fn partial_cmp(&self, other: &Endianness) -> Option<Ordering>
fn partial_cmp(&self, other: &Endianness) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more