[][src]Struct netlink_proto::NetlinkCodec

pub struct NetlinkCodec<T> { /* fields omitted */ }

Implementations

impl<T> NetlinkCodec<T>[src]

pub fn new() -> Self[src]

Trait Implementations

impl<T> Decoder for NetlinkCodec<NetlinkMessage<T>> where
    T: NetlinkDeserializable<T> + Debug + Eq + PartialEq + Clone
[src]

type Item = NetlinkMessage<T>

The type of decoded frames.

type Error = Error

The type of unrecoverable frame decoding errors. Read more

impl<T> Default for NetlinkCodec<T>[src]

impl<T> Encoder for NetlinkCodec<NetlinkMessage<T>> where
    T: Debug + Eq + PartialEq + Clone + NetlinkSerializable<T>, 
[src]

type Item = NetlinkMessage<T>

The type of items consumed by the Encoder

type Error = Error

The type of encoding errors. Read more

Auto Trait Implementations

impl<T> RefUnwindSafe for NetlinkCodec<T> where
    T: RefUnwindSafe

impl<T> Send for NetlinkCodec<T> where
    T: Send

impl<T> Sync for NetlinkCodec<T> where
    T: Sync

impl<T> Unpin for NetlinkCodec<T> where
    T: Unpin

impl<T> UnwindSafe for NetlinkCodec<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.