[][src]Type Definition witcher::Result

type Result<T, E = Error> = Result<T, E>;

Result<T> is a simplified return type to use throughout your application.

Trait Implementations

impl<T, E> Wrapper<T, E> for Result<T, E> where
    E: StdError + Send + Sync + 'static, 
[src]