[][src]Trait status::AdhocValue

pub trait AdhocValue: Display + Debug + Send + Sync + 'static {
    fn clone_box(&self) -> Box<dyn AdhocValue>;
}

Trait alias for values in a AdhocContext

Required methods

fn clone_box(&self) -> Box<dyn AdhocValue>

Clone the value

Loading content...

Implementors

impl<V> AdhocValue for V where
    V: Clone + Display + Debug + Send + Sync + 'static, 
[src]

Loading content...