Trait tlbits::Error

source ·
pub trait Error: StdError + Sized {
    // Required methods
    fn custom<T>(msg: T) -> Self
       where T: Display;
    fn context<C>(self, context: C) -> Self
       where C: Display;
}

Required Methods§

source

fn custom<T>(msg: T) -> Self
where T: Display,

source

fn context<C>(self, context: C) -> Self
where C: Display,

Object Safety§

This trait is not object safe.

Implementors§