pub trait WithContext {
    fn with<C>(&self, context: C) -> Contextual<&Self, C>;
    fn into_with<C>(self, context: C) -> Contextual<Self, C>
    where
        Self: Sized
; }

Required Methods§

Implementors§