#[repr(u8)]pub enum EventType {
Unknown = 0,
DownloadComplete = 1,
InstallComplete = 2,
UpdateComplete = 3,
UpdateDownloadStarted = 13,
UpdateDownloadFinished = 14,
RebootedAfterUpdate = 54,
}
Expand description
The type of event that is being reported. These are specified by the Omaha protocol.
See https://github.com/google/omaha/blob/HEAD/doc/ServerProtocolV3.md#event-request
Variants§
Unknown = 0
DownloadComplete = 1
The initial download of the application is complete.
InstallComplete = 2
The initial installation of the application is complete.
UpdateComplete = 3
The application update is complete.
UpdateDownloadStarted = 13
The download of the update for the application has started.
UpdateDownloadFinished = 14
The download of the update for the application is complete.
RebootedAfterUpdate = 54
The application is now using the updated software. This is sent after a successful boot into the update software.
Trait Implementations§
impl Eq for EventType
impl StructuralPartialEq for EventType
Auto Trait Implementations§
impl Freeze for EventType
impl RefUnwindSafe for EventType
impl Send for EventType
impl Sync for EventType
impl Unpin for EventType
impl UnwindSafe for EventType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)