Struct zero_copy_pads::PanicOnExcess[][src]

pub struct PanicOnExcess;

Forbid all excesses, panic once encounter one.

When value.width() is not greater than total_width, add pads as usual:

use zero_copy_pads::{PaddedValue, AlignRight, PanicOnExcess};
let padded_value = PaddedValue {
    handle_excess: PanicOnExcess,
    value: "abcdef",
    pad_block: '-',
    total_width: 9,
    pad: AlignRight,
};
assert_eq!(padded_value.to_string(), "---abcdef");

When value.width() is greater than total_width, panic:

use zero_copy_pads::{PaddedValue, AlignRight, PanicOnExcess};
let padded_value = PaddedValue {
    handle_excess: PanicOnExcess,
    value: "abcdefghijkl",
    pad_block: '-',
    total_width: 9,
    pad: AlignRight,
};
assert_eq!(padded_value.to_string(), "abcdefghijkl");

Trait Implementations

impl Clone for PanicOnExcess[src]

impl Copy for PanicOnExcess[src]

impl Debug for PanicOnExcess[src]

impl Default for PanicOnExcess[src]

impl Eq for PanicOnExcess[src]

impl<Value, PadBlock> ExcessHandler<Value, PadBlock> for PanicOnExcess where
    Value: Width,
    PadBlock: Display
[src]

impl<Value, PadBlock> From<PanicOnExcess> for ExcessHandlingFunction<Value, PadBlock> where
    Value: Width,
    PadBlock: Display
[src]

impl PartialEq<PanicOnExcess> for PanicOnExcess[src]

impl StructuralEq for PanicOnExcess[src]

impl StructuralPartialEq for PanicOnExcess[src]

impl Unit for PanicOnExcess[src]

impl<Value: Width, PadBlock: Display> UnitExcessHandler<Value, PadBlock> for PanicOnExcess[src]

Auto Trait Implementations

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<X> Pipe for X

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.