Trait rtnetlink::Parseable[][src]

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

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