Trait scroll::ctx::TryIntoCtx [] [src]

pub trait TryIntoCtx<Ctx: Copy = (usize, DefaultCtx), This: ?Sized = [u8]>: Sized {
    type Error;
    fn try_into_ctx(self, _: &mut This, ctx: Ctx) -> Result<(), Self::Error>;
}

Tries to write Self into This using the context Ctx

Associated Types

Required Methods

Implementors