pub trait AppStatusObj {
    fn create(
        owner: ObjectId,
        id: DecAppId,
        version: String,
        status: bool
    ) -> Self; fn app_id(&self) -> &DecAppId; fn version(&self) -> &str; fn status(&self) -> bool; fn set_version(&mut self, version: String); fn set_status(&mut self, status: bool); }

Required Methods

Implementors