pub trait AppSetExt: AppSet {
// Provided methods
fn all_valid(&self) -> bool { ... }
fn update_from_omaha(&mut self, app_responses: &[AppResponse]) { ... }
fn load<'a>(
&'a mut self,
storage: &'a impl Storage,
) -> LocalBoxFuture<'a, ()> { ... }
fn persist<'a>(
&'a self,
storage: &'a mut impl Storage,
) -> LocalBoxFuture<'a, ()> { ... }
}Provided Methods§
Sourcefn update_from_omaha(&mut self, app_responses: &[AppResponse])
fn update_from_omaha(&mut self, app_responses: &[AppResponse])
Update the cohort and user counting for each app from Omaha app response.
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.