Trait overflow_error::ErrorBase [] [src]

pub trait ErrorBase<Val: ?Sized = ()>: Fail + Into<&'static str> + Copy + Eq + Hash {
    type With: ?Sized + ErrorWith<Val, Without = Self>;
    fn val(self, val: Val) -> Self::With
    where
        Val: Sized
; }

The failure of a particular operation.

Can be attached with a value of type Val.

Associated Types

This error, attached with a value.

Required Methods

Attaches a value to this error.

Implementors