[][src]Enum kompact::timer::TimerEntry

pub enum TimerEntry {
    OneShot {
        id: Uuid,
        timeout: Duration,
        action: Box<dyn FnOnce(Uuid) + Send + 'static>,
    },
    Periodic {
        id: Uuid,
        delay: Duration,
        period: Duration,
        action: Box<dyn Fn(Uuid) + Send + 'static>,
    },
}

Variants

OneShot

Fields of OneShot

id: Uuidtimeout: Durationaction: Box<dyn FnOnce(Uuid) + Send + 'static>
Periodic

Fields of Periodic

id: Uuiddelay: Durationperiod: Durationaction: Box<dyn Fn(Uuid) + Send + 'static>

Methods

impl TimerEntry[src]

pub fn id(&self) -> Uuid[src]

pub fn id_ref(&self) -> &Uuid[src]

pub fn delay(&self) -> Duration[src]

pub fn delay_ref(&self) -> &Duration[src]

pub fn with_duration(self, d: Duration) -> TimerEntry[src]

pub fn execute(self) -> Option<TimerEntry>[src]

Trait Implementations

impl Debug for TimerEntry[src]

Auto Trait Implementations

impl Send for TimerEntry

impl !Sync for TimerEntry

Blanket Implementations

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

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

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

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

impl<T> Erased for T