Skip to main content

Option

Type Alias Option 

Source
pub type Option = Box<dyn FnOnce(&mut Model)>;
Expand description

Option is a configuration option in new. For example:

let timer = timer::new(Duration::from_secs(10), vec![timer::with_interval(Duration::from_secs(5))]);

Aliased Typeยง

pub struct Option(/* private fields */);