Struct zero_copy_pads::Excess[][src]

pub struct Excess<'a, Value, PadBlock = char> where
    Value: Width,
    PadBlock: Display
{ pub value: &'a Value, pub pad_block: &'a PadBlock, pub value_width: usize, pub total_width: usize, }

Information about a situation where total_width is less than value.width().

This information is to be passed to an excess handler.

Fields

value: &'a Value

The value the caused the excess.

pad_block: &'a PadBlock

The block that was used for the pad.

value_width: usize

The width of the value that caused the excess.

total_width: usize

The total width that was exceeded by the value.

Trait Implementations

impl<'a, Value: Clone, PadBlock: Clone> Clone for Excess<'a, Value, PadBlock> where
    Value: Width,
    PadBlock: Display
[src]

impl<'a, Value: Copy, PadBlock: Copy> Copy for Excess<'a, Value, PadBlock> where
    Value: Width,
    PadBlock: Display
[src]

impl<'a, Value: Debug, PadBlock: Debug> Debug for Excess<'a, Value, PadBlock> where
    Value: Width,
    PadBlock: Display
[src]

Auto Trait Implementations

impl<'a, Value, PadBlock> RefUnwindSafe for Excess<'a, Value, PadBlock> where
    PadBlock: RefUnwindSafe,
    Value: RefUnwindSafe

impl<'a, Value, PadBlock> Send for Excess<'a, Value, PadBlock> where
    PadBlock: Sync,
    Value: Sync

impl<'a, Value, PadBlock> Sync for Excess<'a, Value, PadBlock> where
    PadBlock: Sync,
    Value: Sync

impl<'a, Value, PadBlock> Unpin for Excess<'a, Value, PadBlock>

impl<'a, Value, PadBlock> UnwindSafe for Excess<'a, Value, PadBlock> where
    PadBlock: RefUnwindSafe,
    Value: 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> 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.