[][src]Enum drone_core::proc_loop::Out

pub enum Out<Req, CmdRes> {
    Req(Req),
    CmdRes(CmdRes),
}

Sess::Fiber output.

See also In.

Variants

Req(Req)

Request that the command loop is waiting for.

CmdRes(CmdRes)

Result for the last command.

Auto Trait Implementations

impl<Req, CmdRes> Unpin for Out<Req, CmdRes> where
    CmdRes: Unpin,
    Req: Unpin

impl<Req, CmdRes> Send for Out<Req, CmdRes> where
    CmdRes: Send,
    Req: Send

impl<Req, CmdRes> Sync for Out<Req, CmdRes> where
    CmdRes: Sync,
    Req: Sync

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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