Trait swiss_army_knife::strings::FromBytes[][src]

pub trait FromBytes: Sized {
    type Error: Error;
    fn from_bytes(bytes: &[u8]) -> Result<Self, Self::Error>;
}
Expand description

From bytes.

Associated Types

Error.

Required methods

From bytes.

Implementors