pub trait ITransactionImportWhereabouts_Impl: Sized {
    // Required methods
    fn GetWhereaboutsSize(&self) -> Result<u32>;
    fn GetWhereabouts(
        &self,
        cbwhereabouts: u32,
        rgbwhereabouts: *mut u8,
        pcbused: *mut u32
    ) -> Result<()>;
}

Required Methods§

fn GetWhereaboutsSize(&self) -> Result<u32>

fn GetWhereabouts( &self, cbwhereabouts: u32, rgbwhereabouts: *mut u8, pcbused: *mut u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§