pub trait TryIntoWithContext<U, C> {
    type Error;

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

Required Associated Types§

Required Methods§

source

fn try_into_with(self, context: &C) -> Result<U, Self::Error>

Implementors§

source§

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

§

type Error = <U as TryFromWithContext<T, C>>::Error