Enum BigEndian

pub enum BigEndian

Big-endian byte order.

See ByteOrder for more details.

Trait Implementations

impl ByteOrder for BigEndian

const ORDER: Order = Order::BigEndian;

impl Clone for BigEndian

fn clone(&self) -> BigEndian

impl Copy for BigEndian

impl Debug for BigEndian

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Display for BigEndian

fn fmt(&self, &mut Formatter<'_>) -> Result

impl Eq for BigEndian

impl Hash for BigEndian

fn hash<__H: Hasher>(&self, state: &mut __H)

impl Ord for BigEndian

fn cmp(&self, other: &BigEndian) -> Ordering

impl PartialEq for BigEndian

fn eq(&self, other: &BigEndian) -> bool

impl PartialOrd for BigEndian

fn partial_cmp(&self, other: &BigEndian) -> Option<Ordering>

impl StructuralPartialEq for BigEndian

Auto Trait Implementations

impl Freeze for BigEndian

impl RefUnwindSafe for BigEndian

impl Send for BigEndian

impl Sync for BigEndian

impl Unpin for BigEndian

impl UnsafeUnpin for BigEndian

impl UnwindSafe for BigEndian

Blanket Implementations

impl<T> Any for BigEndian where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for BigEndian where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for BigEndian where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for BigEndian where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for BigEndian

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for BigEndian where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for BigEndian where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for BigEndian where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>