pub trait IntoRefWithContext<'a, U: ?Sized, C: ?Sized> {
    // Required method
    fn into_ref_with(self, context: &'a C) -> &'a U;
}

Required Methods§

source

fn into_ref_with(self, context: &'a C) -> &'a U

Implementors§