pub struct VecAppSet {
pub apps: Vec<App>,
}Expand description
An AppSet implementation based on Vec, the first app will be treated as the system app.
Fields§
§apps: Vec<App>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VecAppSet
impl RefUnwindSafe for VecAppSet
impl Send for VecAppSet
impl Sync for VecAppSet
impl Unpin for VecAppSet
impl UnwindSafe for VecAppSet
Blanket Implementations§
Source§impl<T> AppSetExt for Twhere
T: AppSet,
impl<T> AppSetExt for Twhere
T: AppSet,
Source§fn 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.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more