Trait IRowsetResynch_Impl
pub trait IRowsetResynch_Impl: IUnknownImpl {
// Required methods
fn GetVisibleData(
&self,
hrow: usize,
haccessor: HACCESSOR,
pdata: *mut c_void,
) -> Result<()>;
fn ResynchRows(
&self,
crows: usize,
rghrows: *const usize,
pcrowsresynched: *mut usize,
prghrowsresynched: *mut *mut usize,
prgrowstatus: *mut *mut u32,
) -> Result<()>;
}
Required Methods§
fn GetVisibleData( &self, hrow: usize, haccessor: HACCESSOR, pdata: *mut c_void, ) -> Result<()>
fn ResynchRows( &self, crows: usize, rghrows: *const usize, pcrowsresynched: *mut usize, prghrowsresynched: *mut *mut usize, prgrowstatus: *mut *mut u32, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.