pub trait IUpdate2_Impl: Sized + IUpdate_Impl {
    // Required methods
    fn RebootRequired(&self) -> Result<VARIANT_BOOL>;
    fn IsPresent(&self) -> Result<VARIANT_BOOL>;
    fn CveIDs(&self) -> Result<IStringCollection>;
    fn CopyToCache(&self, pfiles: Option<&IStringCollection>) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§