[]Enum ncursesw::NCurseswError

pub enum NCurseswError {
    LibraryError {
        func: String,
        rc: i32,
    },
    InterruptedCall,
    KeyResize,
    KeyEvent,
    ColorParseError {
        color: String,
    },
    ColorLimit,
    ColorPairLimit,
    IntError {
        source: TryFromIntError,
    },
    CharError {
        source: CharTryFromError,
    },
    NulError {
        source: NulError,
    },
    PanelsError {
        source: NCurseswPanelsError,
    },
    MouseError {
        source: NCurseswMouseError,
    },
    MenuError {
        source: NCurseswMenuError,
    },
    FormError {
        source: NCurseswFormError,
    },
    OSError {
        func: String,
        errno: Errno,
    },
}

NCursesw Errors/Events.

Variants

LibraryError

Fields of LibraryError

func: Stringrc: i32
InterruptedCall
KeyResize
KeyEvent
ColorParseError

Fields of ColorParseError

color: String
ColorLimit
ColorPairLimit
IntError

Fields of IntError

source: TryFromIntError
CharError

Fields of CharError

source: CharTryFromError
NulError

Fields of NulError

source: NulError
PanelsError

Fields of PanelsError

source: NCurseswPanelsError
MouseError

Fields of MouseError

source: NCurseswMouseError
MenuError

Fields of MenuError

source: NCurseswMenuError
FormError

Fields of FormError

source: NCurseswFormError
OSError

Fields of OSError

func: Stringerrno: Errno

Trait Implementations

impl Debug for NCurseswError

impl Display for NCurseswError

impl Eq for NCurseswError[src]

impl Error for NCurseswError

impl From<CharTryFromError> for NCurseswError

impl From<NCurseswFormError> for NCurseswError

impl From<NCurseswMenuError> for NCurseswError

impl From<NCurseswMouseError> for NCurseswError

impl From<NCurseswPanelsError> for NCurseswError

impl From<NulError> for NCurseswError

impl From<TryFromIntError> for NCurseswError

impl PartialEq<NCurseswError> for NCurseswError[src]

impl StructuralEq for NCurseswError[src]

impl StructuralPartialEq for NCurseswError[src]

Auto Trait Implementations

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> 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.