pub trait IEnumEnhancedStorageACT_Impl: Sized {
    // Required methods
    fn GetACTs(
        &self,
        pppienhancedstorageacts: *mut *mut Option<IEnhancedStorageACT>,
        pcenhancedstorageacts: *mut u32
    ) -> Result<()>;
    fn GetMatchingACT(&self, szvolume: &PCWSTR) -> Result<IEnhancedStorageACT>;
}

Required Methods§

fn GetACTs( &self, pppienhancedstorageacts: *mut *mut Option<IEnhancedStorageACT>, pcenhancedstorageacts: *mut u32 ) -> Result<()>

fn GetMatchingACT(&self, szvolume: &PCWSTR) -> Result<IEnhancedStorageACT>

Object Safety§

This trait is not object safe.

Implementors§