pub trait IntoCtx<Ctx: Copy = (), This: ?Sized = [u8]>: Sized {
    // Required method
    fn into_ctx(self, _: &mut This, ctx: Ctx);
}Expand description
Writes Self into This using the context Ctx
Required Methods§
Object Safety§
This trait is not object safe.