windows::Win32::System::UpdateAgent

Trait ICategory_Impl

pub trait ICategory_Impl: IDispatch_Impl {
    // Required methods
    fn Name(&self) -> Result<BSTR>;
    fn CategoryID(&self) -> Result<BSTR>;
    fn Children(&self) -> Result<ICategoryCollection>;
    fn Description(&self) -> Result<BSTR>;
    fn Image(&self) -> Result<IImageInformation>;
    fn Order(&self) -> Result<i32>;
    fn Parent(&self) -> Result<ICategory>;
    fn Type(&self) -> Result<BSTR>;
    fn Updates(&self) -> Result<IUpdateCollection>;
}

Required Methods§

fn Name(&self) -> Result<BSTR>

fn CategoryID(&self) -> Result<BSTR>

fn Children(&self) -> Result<ICategoryCollection>

fn Description(&self) -> Result<BSTR>

fn Image(&self) -> Result<IImageInformation>

fn Order(&self) -> Result<i32>

fn Parent(&self) -> Result<ICategory>

fn Type(&self) -> Result<BSTR>

fn Updates(&self) -> Result<IUpdateCollection>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§