pub trait IAutomaticUpdates_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn DetectNow(&self) -> Result<()>;
    fn Pause(&self) -> Result<()>;
    fn Resume(&self) -> Result<()>;
    fn ShowSettingsDialog(&self) -> Result<()>;
    fn Settings(&self) -> Result<IAutomaticUpdatesSettings>;
    fn ServiceEnabled(&self) -> Result<VARIANT_BOOL>;
    fn EnableService(&self) -> Result<()>;
}

Required Methods§

fn DetectNow(&self) -> Result<()>

fn Pause(&self) -> Result<()>

fn Resume(&self) -> Result<()>

fn ShowSettingsDialog(&self) -> Result<()>

fn Settings(&self) -> Result<IAutomaticUpdatesSettings>

fn ServiceEnabled(&self) -> Result<VARIANT_BOOL>

fn EnableService(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§