Trait cdrs::FromSingleByte [] [src]

pub trait FromSingleByte {
    fn from_byte(_: u8) -> Self;
}

FromSingleByte should be used to convert a single byte into a value. It is opposite to AsByte.

Required Methods

It should convert a single byte into an implementor struct.

Implementors