Trait AppSettingObj

Source
pub trait AppSettingObj {
    // Required methods
    fn create(owner: ObjectId, id: DecAppId) -> Self;
    fn app_id(&self) -> &DecAppId;
    fn auto_update(&self) -> bool;
    fn set_auto_update(&mut self, auto_update: bool);
}

Required Methods§

Source

fn create(owner: ObjectId, id: DecAppId) -> Self

Source

fn app_id(&self) -> &DecAppId

Source

fn auto_update(&self) -> bool

Source

fn set_auto_update(&mut self, auto_update: bool)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§