Enum xplr::app::MsgOut[][src]

pub enum MsgOut {
    Explore,
    Refresh,
    ClearScreen,
    Quit,
    PrintResultAndQuit,
    PrintAppStateAndQuit,
    Debug(String),
    Call(Command),
    CallSilently(Command),
    Enque(Task),
}

Variants

Explore
Refresh
ClearScreen
Quit
PrintResultAndQuit
PrintAppStateAndQuit
Debug(String)
Call(Command)
CallSilently(Command)
Enque(Task)

Trait Implementations

impl Clone for MsgOut[src]

impl Debug for MsgOut[src]

impl<'de> Deserialize<'de> for MsgOut[src]

impl Eq for MsgOut[src]

impl PartialEq<MsgOut> for MsgOut[src]

impl Serialize for MsgOut[src]

impl StructuralEq for MsgOut[src]

impl StructuralPartialEq for MsgOut[src]

Auto Trait Implementations

impl RefUnwindSafe for MsgOut

impl Send for MsgOut

impl Sync for MsgOut

impl Unpin for MsgOut

impl UnwindSafe for MsgOut

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.