pub trait TimerBindingsTypes {
    type Timer: Debug + Send + Sync;
    type DispatchId: Clone;
}
Expand description

Opaque types provided by bindings used by TimerContext.

Required Associated Types§

source

type Timer: Debug + Send + Sync

State for a timer created through TimerContext.

source

type DispatchId: Clone

The type used to dispatch fired timers from bindings to core.

Implementors§