[][src]Enum lib3h_zombie_actor::GhostCallbackData

pub enum GhostCallbackData<CbData: 'static, E: 'static> {
    Response(Result<CbData, E>),
    Timeout(Backtwrap),
}

a ghost request callback can be invoked with a response that was injected into the system through the handle pathway, or to indicate a failure such as a timeout

Variants

Response(Result<CbData, E>)
Timeout(Backtwrap)

Trait Implementations

impl<CbData: Clone + 'static, E: Clone + 'static> Clone for GhostCallbackData<CbData, E>[src]

impl<CbData: Debug + 'static, E: Debug + 'static> Debug for GhostCallbackData<CbData, E>[src]

Auto Trait Implementations

impl<CbData, E> Send for GhostCallbackData<CbData, E> where
    CbData: Send,
    E: Send

impl<CbData, E> Sync for GhostCallbackData<CbData, E> where
    CbData: Sync,
    E: Sync

impl<CbData, E> Unpin for GhostCallbackData<CbData, E> where
    CbData: Unpin,
    E: Unpin

impl<CbData, E> UnwindSafe for GhostCallbackData<CbData, E> where
    CbData: UnwindSafe,
    E: UnwindSafe

impl<CbData, E> RefUnwindSafe for GhostCallbackData<CbData, E> where
    CbData: RefUnwindSafe,
    E: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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.

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]

impl<T> Erased for T