[][src]Enum no_proto::memory::NP_Size

pub enum NP_Size {
    U32,
    U16,
    U8,
}

The different address sizes availalbe for buffers

Variants

U32

32 bit address, 4 bytes in size

U16

16 bit address, 2 bytes in size

U8

8 bit address, 1 byte in size

Trait Implementations

impl Clone for NP_Size[src]

impl Copy for NP_Size[src]

impl Debug for NP_Size[src]

impl Eq for NP_Size[src]

impl PartialEq<NP_Size> for NP_Size[src]

impl StructuralEq for NP_Size[src]

impl StructuralPartialEq for NP_Size[src]

Auto Trait Implementations

impl Send for NP_Size

impl Sync for NP_Size

impl Unpin for NP_Size

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.