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]

[src]

impl IntoCtx<Endian> for i8
[src]

[src]

impl IntoCtx<Endian> for u16
[src]

[src]

impl IntoCtx<Endian> for i16
[src]

[src]

impl IntoCtx<Endian> for u32
[src]

[src]

impl IntoCtx<Endian> for i32
[src]

[src]

impl IntoCtx<Endian> for u64
[src]

[src]

impl IntoCtx<Endian> for i64
[src]

[src]

impl IntoCtx<Endian> for f32
[src]

[src]

impl IntoCtx<Endian> for f64
[src]

[src]

impl IntoCtx<Endian> for usize
[src]

[src]

Implementors