[][src]Enum netlink_proto::ErrorKind

pub enum ErrorKind<T> where
    T: Debug + Eq + PartialEq + Clone
{ ConnectionClosed, NetlinkError(NetlinkMessage<T>), SocketIo(Error), }

Variants

ConnectionClosed

The netlink connection is closed

NetlinkError(NetlinkMessage<T>)

Received an error message as a response

SocketIo(Error)

Error while reading from or writing to the netlink socket

Trait Implementations

impl<T: Debug> Debug for ErrorKind<T> where
    T: Debug + Eq + PartialEq + Clone
[src]

impl<T> From<ErrorKind<T>> for Error<T> where
    T: Debug + Eq + PartialEq + Clone
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for ErrorKind<T>

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

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

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

impl<T> !UnwindSafe for ErrorKind<T>

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.