[][src]Struct packed_struct::debug_fmt::PackedStructDisplay

pub struct PackedStructDisplay<'a, P: 'a, B: 'a> {
    pub packed_struct: &'a P,
    pub packed_struct_packed: PhantomData<B>,
    pub header: bool,
    pub raw_decimal: bool,
    pub raw_hex: bool,
    pub raw_binary: bool,
    pub fields: bool,
}

Fields

packed_struct: &'a Ppacked_struct_packed: PhantomData<B>header: boolraw_decimal: boolraw_hex: boolraw_binary: boolfields: bool

Implementations

impl<'a, P, B> PackedStructDisplay<'a, P, B>[src]

pub fn new(packed_struct: &'a P) -> Self[src]

Trait Implementations

impl<'a, P, B> Display for PackedStructDisplay<'a, P, B> where
    P: PackedStruct<B> + PackedStructSlice + PackedStructDebug
[src]

Auto Trait Implementations

impl<'a, P, B> RefUnwindSafe for PackedStructDisplay<'a, P, B> where
    B: RefUnwindSafe,
    P: RefUnwindSafe

impl<'a, P, B> Send for PackedStructDisplay<'a, P, B> where
    B: Send,
    P: Sync

impl<'a, P, B> Sync for PackedStructDisplay<'a, P, B> where
    B: Sync,
    P: Sync

impl<'a, P, B> Unpin for PackedStructDisplay<'a, P, B> where
    B: Unpin

impl<'a, P, B> UnwindSafe for PackedStructDisplay<'a, P, B> where
    B: UnwindSafe,
    P: RefUnwindSafe

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> 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.