Enum backstage::actor::Need[][src]

pub enum Need {
    Restart,
    RescheduleAfter(Duration),
    Abort,
}

Need enum used by children to ask their supervisors

Variants

Restart

Child is asking for Restart the actor/service

RescheduleAfter(Duration)

Child is asking for RescheduleAfter

Abort

Child is asking for Abort

Trait Implementations

impl Clone for Need[src]

impl Copy for Need[src]

Auto Trait Implementations

impl RefUnwindSafe for Need

impl Send for Need

impl Sync for Need

impl Unpin for Need

impl UnwindSafe for Need

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