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

Required Methods§

source

fn context<S: ToString>(self, s: S) -> Result<T>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T, E: 'static + Send + Sync + Error> Contextable<T> for Result<T, E>

source§

fn context<S: ToString>(self, s: S) -> Result<T>

Implementors§

source§

impl<T> Contextable<T> for hyper_scripter::error::Result<T>