Struct zero_copy_pads::ErrorOnExcess[][src]

pub struct ErrorOnExcess;

Forbid all excesses, raise fmt::Error once encounter one.

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

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

When value.width() is greater than total_width, return an Err of fmt::Error:

use zero_copy_pads::{PaddedValue, AlignRight, ErrorOnExcess};
let padded_value = PaddedValue {
    handle_excess: ErrorOnExcess,
    value: "abcdefghijkl",
    pad_block: '-',
    total_width: 9,
    pad: AlignRight,
};
let mut output = String::new();
std::fmt::write(
    &mut output,
    format_args!("{}", padded_value),
).unwrap_err();

Trait Implementations

impl Clone for ErrorOnExcess[src]

impl Copy for ErrorOnExcess[src]

impl Debug for ErrorOnExcess[src]

impl Default for ErrorOnExcess[src]

impl Eq for ErrorOnExcess[src]

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

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

impl PartialEq<ErrorOnExcess> for ErrorOnExcess[src]

impl StructuralEq for ErrorOnExcess[src]

impl StructuralPartialEq for ErrorOnExcess[src]

impl Unit for ErrorOnExcess[src]

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