[][src]Enum ax25::tnc::TncError

pub enum TncError {
    OpenTnc {
        source: Error,
    },
    InterfaceNotFound {
        callsign: String,
    },
    SendFrame {
        source: Error,
    },
    ReceiveFrame {
        source: Error,
    },
    ConfigFailed {
        source: Error,
    },
}

Errors that can occur when interacting with a Tnc.

Variants

OpenTnc

Fields of OpenTnc

source: Error
InterfaceNotFound

Fields of InterfaceNotFound

callsign: String
SendFrame

Fields of SendFrame

source: Error
ReceiveFrame

Fields of ReceiveFrame

source: Error
ConfigFailed

Fields of ConfigFailed

source: Error

Trait Implementations

impl Debug for TncError[src]

impl Display for TncError[src]

impl Error for TncError where
    Self: Debug + Display
[src]

impl ErrorCompat for TncError[src]

Auto Trait Implementations

impl !RefUnwindSafe for TncError

impl Send for TncError

impl Sync for TncError

impl Unpin for TncError

impl !UnwindSafe for TncError

Blanket Implementations

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

impl<T> AsErrorSource for T where
    T: 'static + Error
[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> ToString for T where
    T: Display + ?Sized
[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.