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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.