pub trait IAutomaticUpdatesSettings_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn NotificationLevel(&self) -> Result<AutomaticUpdatesNotificationLevel>;
    fn SetNotificationLevel(
        &self,
        value: AutomaticUpdatesNotificationLevel
    ) -> Result<()>;
    fn ReadOnly(&self) -> Result<VARIANT_BOOL>;
    fn Required(&self) -> Result<VARIANT_BOOL>;
    fn ScheduledInstallationDay(
        &self
    ) -> Result<AutomaticUpdatesScheduledInstallationDay>;
    fn SetScheduledInstallationDay(
        &self,
        value: AutomaticUpdatesScheduledInstallationDay
    ) -> Result<()>;
    fn ScheduledInstallationTime(&self) -> Result<i32>;
    fn SetScheduledInstallationTime(&self, value: i32) -> Result<()>;
    fn Refresh(&self) -> Result<()>;
    fn Save(&self) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§