pub trait FromWithContext<U, C> {
    // Required method
    fn from_with(value: U, context: &C) -> Self;
}

Required Methods§

source

fn from_with(value: U, context: &C) -> Self

Implementors§

source§

impl<T, C> FromWithContext<T, C> for T