pub trait EmptyCallback {
    // Required method
    fn call();
}
Expand description

Represents callback action for cases without input and output.

Required Methods§

source

fn call()

Triggers the callback’s logic.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl EmptyCallback for ()

Implementors§