pub trait Parseable<T>: Sizedwhere
    T: ?Sized,
{ fn parse(buf: &T) -> Result<Self, DecodeError>; }
Expand description

A Parseable type can be used to deserialize data from the type T for which it is implemented.

Required Methods§

Deserialize the current type.

Implementations on Foreign Types§

Implementors§