pub trait TryFromBytes<T>: Sized {
    type Error;
    fn try_from_bytes<I: IntoIterator<Item = T>>(
        bytes: I
    ) -> Result<Self, Self::Error>; }
Expand description

Trait for converting a sequence of bytes into some data structure

Associated Types

Error type yielded if conversion fails

Required methods

Try to convert from some sequence of bytes T into Self

Implementors