pub trait AppProfileStore {
// Required methods
fn load(&self, app: &ActiveApp) -> AppProfile;
fn merge_update(&self, app: &ActiveApp, update: AppProfileUpdate);
}Required Methods§
fn load(&self, app: &ActiveApp) -> AppProfile
fn merge_update(&self, app: &ActiveApp, update: AppProfileUpdate)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".