pub trait ISearchResult_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn ResultCode(&self) -> Result<OperationResultCode>;
    fn RootCategories(&self) -> Result<ICategoryCollection>;
    fn Updates(&self) -> Result<IUpdateCollection>;
    fn Warnings(&self) -> Result<IUpdateExceptionCollection>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§