pub trait ICategory_Impl: Sized + 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>

Object Safety§

This trait is not object safe.

Implementors§