pub trait Contextable<T> {
    fn context<S: ToString>(self, s: S) -> Result<T>;
}

Required methods

Implementations on Foreign Types

Implementors