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

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

Similar to From<&U> for T

Associated Types

The value that this struct encodes

Required methods

extract the contained value

Implementors