[][src]Trait assembly_core::buffer::Repr

pub trait Repr {
    type Value;
    pub fn extract(&self) -> Self::Value;
}

Similar to From<&U> for T

Associated Types

type Value[src]

The value that this struct encodes

Loading content...

Required methods

pub fn extract(&self) -> Self::Value[src]

extract the contained value

Loading content...

Implementors

impl Repr for LEI64[src]

type Value = i64

impl Repr for LEU16[src]

type Value = u16

impl Repr for LEU32[src]

type Value = u32

Loading content...