pub struct AppResponse {
pub app_id: String,
pub cohort: Cohort,
pub user_counting: UserCounting,
pub result: Action,
}
Expand description
For each application that had an update check performed, a new App (potentially with new Cohort and UserCounting data) and a corresponding response Action are returned from the update check.
Fields§
§app_id: String
The returned information about an application.
cohort: Cohort
Cohort data returned from Omaha
user_counting: UserCounting
§result: Action
The resultant action of its update check.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AppResponse
impl RefUnwindSafe for AppResponse
impl Send for AppResponse
impl Sync for AppResponse
impl Unpin for AppResponse
impl UnwindSafe for AppResponse
Blanket Implementations§
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