Trait TimerActionExt

Source
pub trait TimerActionExt: ActionType {
    // Required methods
    fn complete() -> Self;
    fn retry() -> Self;
}
Expand description

Extension trait for ActionType to provide timer-specific actions

Required Methods§

Source

fn complete() -> Self

Create a complete action for timer nodes

Source

fn retry() -> Self

Create a retry action for timer nodes

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl TimerActionExt for DefaultAction

Source§

fn complete() -> Self

Source§

fn retry() -> Self

Implementors§