pub trait Parseable<T> {
    fn parse(&self) -> Result<T, DecodeError>;
}
Expand description

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

Required Methods§

Deserialize the current type.

Implementors§