[][src]Trait chainerror::ChainErrorFrom

pub trait ChainErrorFrom<T>: Sized {
    fn chain_error_from(
        _: T,
        line_filename: Option<(u32, &'static str)>
    ) -> ChainError<Self>; }

Required methods

fn chain_error_from(
    _: T,
    line_filename: Option<(u32, &'static str)>
) -> ChainError<Self>

Loading content...

Implementors

impl<T, U> ChainErrorFrom<T> for U where
    T: Into<U>,
    U: 'static + Display + Debug
[src]

Loading content...