pub enum WindowsUpdateInstallMode {
BasicUi,
Quiet,
Passive,
}
Expand description
Install modes for the Windows update.
Variants§
BasicUi
Specifies there’s a basic UI during the installation process, including a final dialog box at the end.
Quiet
The quiet mode means there’s no user interaction required. Requires admin privileges if the installer does.
Passive
Specifies unattended mode, which means the installation only shows a progress bar.
Trait Implementations§
Source§impl Clone for WindowsUpdateInstallMode
impl Clone for WindowsUpdateInstallMode
Source§fn clone(&self) -> WindowsUpdateInstallMode
fn clone(&self) -> WindowsUpdateInstallMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WindowsUpdateInstallMode
impl Debug for WindowsUpdateInstallMode
Source§impl Default for WindowsUpdateInstallMode
impl Default for WindowsUpdateInstallMode
Source§impl<'de> Deserialize<'de> for WindowsUpdateInstallMode
impl<'de> Deserialize<'de> for WindowsUpdateInstallMode
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for WindowsUpdateInstallMode
impl Display for WindowsUpdateInstallMode
Source§impl PartialEq for WindowsUpdateInstallMode
impl PartialEq for WindowsUpdateInstallMode
Source§impl Serialize for WindowsUpdateInstallMode
impl Serialize for WindowsUpdateInstallMode
impl Eq for WindowsUpdateInstallMode
impl StructuralPartialEq for WindowsUpdateInstallMode
Auto Trait Implementations§
impl Freeze for WindowsUpdateInstallMode
impl RefUnwindSafe for WindowsUpdateInstallMode
impl Send for WindowsUpdateInstallMode
impl Sync for WindowsUpdateInstallMode
impl Unpin for WindowsUpdateInstallMode
impl UnwindSafe for WindowsUpdateInstallMode
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