[][src]Enum termcandy::RunError

pub enum RunError<E> {
    Widget(E),
    Io(Error),
}

Errors returned by termcandy::run.

Variants

Widget(E)

The given widget returned an error.

Io(Error)

IO error using the terminal.

Trait Implementations

impl<E> Display for RunError<E> where
    E: Display
[src]

impl<E: Debug> Debug for RunError<E>[src]

Auto Trait Implementations

impl<E> Send for RunError<E> where
    E: Send

impl<E> Sync for RunError<E> where
    E: Sync

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> Erased for T