pub trait TryFromWithContext<U, C>: Sized {
    type Error;

    // Required method
    fn try_from_with(value: U, context: &C) -> Result<Self, Self::Error>;
}

Required Associated Types§

Required Methods§

source

fn try_from_with(value: U, context: &C) -> Result<Self, Self::Error>

Implementors§

source§

impl<T, U: IntoWithContext<T, C>, C> TryFromWithContext<U, C> for T