pub trait AppLocalListObj {
    fn insert(&mut self, id: DecAppId);
    fn create(owner: ObjectId, id: &str) -> Self;
    fn remove(&mut self, id: &DecAppId);
    fn clear(&mut self);
    fn app_list(&self) -> &HashSet<DecAppId>;
    fn id(&self) -> &str;
    fn exists(&self, id: &DecAppId) -> bool;
}

Required Methods

Implementors