Trait Disableable

Source
pub trait Disableable {
    // Required method
    fn disabled(&self) -> bool;
}
Expand description

An app that can be disabled via configuration.

Required Methods§

Source

fn disabled(&self) -> bool

Returns true if the configured app is disabled.

Implementors§