pub trait IntoWithContext<U, C> {
    // Required method
    fn into_with(self, context: &C) -> U;
}

Required Methods§

source

fn into_with(self, context: &C) -> U

Implementors§

source§

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