pub trait IBackgroundCopyQMgr_Impl: Sized {
    // Required methods
    fn CreateGroup(&self, guidgroupid: &GUID) -> Result<IBackgroundCopyGroup>;
    fn GetGroup(&self, groupid: &GUID) -> Result<IBackgroundCopyGroup>;
    fn EnumGroups(&self, dwflags: u32) -> Result<IEnumBackgroundCopyGroups>;
}

Required Methods§

fn CreateGroup(&self, guidgroupid: &GUID) -> Result<IBackgroundCopyGroup>

fn GetGroup(&self, groupid: &GUID) -> Result<IBackgroundCopyGroup>

fn EnumGroups(&self, dwflags: u32) -> Result<IEnumBackgroundCopyGroups>

Object Safety§

This trait is not object safe.

Implementors§