Trait IntoContext

Source
pub trait IntoContext<U: Data> {
    // Required method
    fn into_context(self) -> Context<U>;
}

Required Methods§

Implementors§

Source§

impl<T, U> IntoContext<U> for Context<T>
where T: Send + Sync + 'static + Into<U>, U: Send + Sync + 'static,