Trait headers_core::decode::TryFromValues[][src]

pub trait TryFromValues: Sized {
    fn try_from_values(values: &mut Values) -> Option<Self>;
}

A helper trait for use when deriving Header.

Required Methods

Try to convert from the values into an instance of Self.

Implementors