pub trait IGPMMigrationTable_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Save(&self, bstrmigrationtablepath: &BSTR) -> Result<()>;
    fn Add(&self, lflags: i32, var: &VARIANT) -> Result<()>;
    fn AddEntry(
        &self,
        bstrsource: &BSTR,
        gpmentrytype: GPMEntryType,
        pvardestination: *const VARIANT,
    ) -> Result<IGPMMapEntry>;
    fn GetEntry(&self, bstrsource: &BSTR) -> Result<IGPMMapEntry>;
    fn DeleteEntry(&self, bstrsource: &BSTR) -> Result<()>;
    fn UpdateDestination(
        &self,
        bstrsource: &BSTR,
        pvardestination: *const VARIANT,
    ) -> Result<IGPMMapEntry>;
    fn Validate(&self) -> Result<IGPMResult>;
    fn GetEntries(&self) -> Result<IGPMMapEntryCollection>;
}

Required Methods§

fn Save(&self, bstrmigrationtablepath: &BSTR) -> Result<()>

fn Add(&self, lflags: i32, var: &VARIANT) -> Result<()>

fn AddEntry( &self, bstrsource: &BSTR, gpmentrytype: GPMEntryType, pvardestination: *const VARIANT, ) -> Result<IGPMMapEntry>

fn GetEntry(&self, bstrsource: &BSTR) -> Result<IGPMMapEntry>

fn DeleteEntry(&self, bstrsource: &BSTR) -> Result<()>

fn UpdateDestination( &self, bstrsource: &BSTR, pvardestination: *const VARIANT, ) -> Result<IGPMMapEntry>

fn Validate(&self) -> Result<IGPMResult>

fn GetEntries(&self) -> Result<IGPMMapEntryCollection>

Object Safety§

This trait is not object safe.

Implementors§