windows::Win32::System::ComponentServices

Trait ISharedPropertyGroupManager_Impl

pub trait ISharedPropertyGroupManager_Impl: IDispatch_Impl {
    // Required methods
    fn CreatePropertyGroup(
        &self,
        name: &BSTR,
        dwisomode: *mut i32,
        dwrelmode: *mut i32,
        fexists: *mut VARIANT_BOOL,
        ppgroup: OutRef<'_, ISharedPropertyGroup>,
    ) -> Result<()>;
    fn get_Group(&self, name: &BSTR) -> Result<ISharedPropertyGroup>;
    fn _NewEnum(&self) -> Result<IUnknown>;
}

Required Methods§

fn CreatePropertyGroup( &self, name: &BSTR, dwisomode: *mut i32, dwrelmode: *mut i32, fexists: *mut VARIANT_BOOL, ppgroup: OutRef<'_, ISharedPropertyGroup>, ) -> Result<()>

fn get_Group(&self, name: &BSTR) -> Result<ISharedPropertyGroup>

fn _NewEnum(&self) -> Result<IUnknown>

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§