Trait scroll::ctx::IntoCtx[][src]

pub trait IntoCtx<Ctx: Copy = (), This: ?Sized = [u8]>: Sized {
    fn into_ctx(self, _: &mut This, ctx: Ctx);
}

Writes Self into This using the context Ctx

Required Methods

Implementations on Foreign Types

impl IntoCtx<Endian> for u8
[src]

impl<'a> IntoCtx<Endian> for &'a u8
[src]

impl IntoCtx<Endian> for i8
[src]

impl<'a> IntoCtx<Endian> for &'a i8
[src]

impl IntoCtx<Endian> for u16
[src]

impl<'a> IntoCtx<Endian> for &'a u16
[src]

impl IntoCtx<Endian> for i16
[src]

impl<'a> IntoCtx<Endian> for &'a i16
[src]

impl IntoCtx<Endian> for u32
[src]

impl<'a> IntoCtx<Endian> for &'a u32
[src]

impl IntoCtx<Endian> for i32
[src]

impl<'a> IntoCtx<Endian> for &'a i32
[src]

impl IntoCtx<Endian> for u64
[src]

impl<'a> IntoCtx<Endian> for &'a u64
[src]

impl IntoCtx<Endian> for i64
[src]

impl<'a> IntoCtx<Endian> for &'a i64
[src]

impl IntoCtx<Endian> for u128
[src]

impl<'a> IntoCtx<Endian> for &'a u128
[src]

impl IntoCtx<Endian> for i128
[src]

impl<'a> IntoCtx<Endian> for &'a i128
[src]

impl IntoCtx<Endian> for f32
[src]

impl<'a> IntoCtx<Endian> for &'a f32
[src]

impl IntoCtx<Endian> for f64
[src]

impl<'a> IntoCtx<Endian> for &'a f64
[src]

impl IntoCtx<Endian> for usize
[src]

Implementors