pub trait LazyLoadable {
// Required methods
fn reload(&mut self) -> Result<()>;
fn is_loaded(&self) -> bool;
fn loading_status(&self) -> &'static str;
}Expand description
Trait for modules that support lazy loading and reloading of data
Required Methods§
Sourcefn loading_status(&self) -> &'static str
fn loading_status(&self) -> &'static str
Get a description of the module’s current loading status