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§
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)
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.