[][src]Struct packed_struct::types::LsbInteger

pub struct LsbInteger<T, B, I>(_, _, _);

A wrapper that packages the integer as a LSB packaged byte array. Usually invoked using code generation.

Trait Implementations

impl<T, B, I> Debug for LsbInteger<T, B, I> where
    I: Debug
[src]

impl<T, B, I> Deref for LsbInteger<T, B, I> where
    B: BitsFullBytes
[src]

type Target = I

The resulting type after dereferencing.

impl<T, B, I> Display for LsbInteger<T, B, I> where
    I: Display
[src]

impl<T, B, I> From<I> for LsbInteger<T, B, I> where
    B: BitsFullBytes
[src]

impl<T, B, I> PackedStruct<<<B as NumberOfBits>::Bytes as NumberOfBytes>::AsBytes> for LsbInteger<T, B, I> where
    B: NumberOfBits,
    I: SizedInteger<T, B>,
    B: BitsFullBytes
[src]

impl<T, B, I> PackedStructInfo for LsbInteger<T, B, I> where
    B: NumberOfBits
[src]

impl<T, B, I> PackedStructSlice for LsbInteger<T, B, I> where
    B: NumberOfBits + BitsFullBytes,
    I: SizedInteger<T, B>, 
[src]

Auto Trait Implementations

impl<T, B, I> RefUnwindSafe for LsbInteger<T, B, I> where
    B: RefUnwindSafe,
    I: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, B, I> Send for LsbInteger<T, B, I> where
    B: Send,
    I: Send,
    T: Send

impl<T, B, I> Sync for LsbInteger<T, B, I> where
    B: Sync,
    I: Sync,
    T: Sync

impl<T, B, I> Unpin for LsbInteger<T, B, I> where
    B: Unpin,
    I: Unpin,
    T: Unpin

impl<T, B, I> UnwindSafe for LsbInteger<T, B, I> where
    B: UnwindSafe,
    I: UnwindSafe,
    T: UnwindSafe

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<!> for T[src]

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.