Skip to main content

Option

Type Alias Option 

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

Option is a configuration option that works in conjunction with new. For example:

let viewport = viewport::new(vec![viewport::with_width(10), viewport::with_height(5)]);

Aliased Typeยง

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