[][src]Struct vm_memory::endian::Be32

pub struct Be32(_);

An unsigned integer type of with an explicit endianness.

See module level documentation for examples.

Implementations

impl Be32[src]

pub fn to_native(self) -> u32[src]

Converts self to the native endianness.

Trait Implementations

impl ByteValued for Be32[src]

impl Clone for Be32[src]

impl Copy for Be32[src]

impl Debug for Be32[src]

impl Default for Be32[src]

impl Eq for Be32[src]

impl From<u32> for Be32[src]

impl Into<u32> for Be32[src]

impl PartialEq<Be32> for Be32[src]

impl PartialEq<Be32> for u32[src]

impl PartialEq<u32> for Be32[src]

impl StructuralEq for Be32[src]

impl StructuralPartialEq for Be32[src]

Auto Trait Implementations

impl RefUnwindSafe for Be32

impl Send for Be32

impl Sync for Be32

impl Unpin for Be32

impl UnwindSafe for Be32

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.