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

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

Tries to write Self into This using the context Ctx

Associated Types

Required Methods

Implementors