pub trait FromTracedValue<'a> {
    type Output: Borrow<Self> + 'a;

    fn from_value(value: &'a TracedValue) -> Option<Self::Output>;
}
Expand description

Fallible conversion from a TracedValue reference.

Required Associated Types§

Output of the conversion.

Required Methods§

Performs the conversion.

Implementations on Foreign Types§

Implementors§