pub trait TryFromBytes<A: AsRef<[u8]>>: Sized {
    type Error;

    fn try_from_bytes(bytes: A) -> Result<Self, Self::Error>;
}
Expand description

Trait for converting a sequence of bytes into some data structure

Required Associated Types§

Error type yielded if conversion fails

Required Methods§

Try to convert from some sequence of bytes T into Self

Implementors§