pub trait ISupportFilteredSync_Impl: Sized {
    // Required method
    fn AddFilter(
        &self,
        pfilter: Option<&IUnknown>,
        filteringtype: FILTERING_TYPE
    ) -> Result<()>;
}

Required Methods§

fn AddFilter( &self, pfilter: Option<&IUnknown>, filteringtype: FILTERING_TYPE ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§