Struct zero_copy_pads::IgnoreExcess[][src]

pub struct IgnoreExcess;

Ignore excess, write value to formatter without padding.

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

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

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

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

Trait Implementations

impl Clone for IgnoreExcess[src]

impl Copy for IgnoreExcess[src]

impl Debug for IgnoreExcess[src]

impl Default for IgnoreExcess[src]

impl Eq for IgnoreExcess[src]

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

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

impl PartialEq<IgnoreExcess> for IgnoreExcess[src]

impl StructuralEq for IgnoreExcess[src]

impl StructuralPartialEq for IgnoreExcess[src]

impl Unit for IgnoreExcess[src]

impl<Value: Width, PadBlock: Display> UnitExcessHandler<Value, PadBlock> for IgnoreExcess[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<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.