Trait IRowsetCopyRows_Impl
pub trait IRowsetCopyRows_Impl: IUnknownImpl {
// Required methods
fn CloseSource(&self, hsourceid: u16) -> Result<()>;
fn CopyByHROWS(
&self,
hsourceid: u16,
hreserved: usize,
crows: isize,
rghrows: *const usize,
bflags: u32,
) -> Result<()>;
fn CopyRows(
&self,
hsourceid: u16,
hreserved: usize,
crows: isize,
bflags: u32,
) -> Result<usize>;
fn DefineSource(
&self,
prowsetsource: Ref<'_, IRowset>,
ccolids: usize,
rgsourcecolumns: *const isize,
rgtargetcolumns: *const isize,
) -> Result<u16>;
}
Required Methods§
fn CloseSource(&self, hsourceid: u16) -> Result<()>
fn CopyByHROWS( &self, hsourceid: u16, hreserved: usize, crows: isize, rghrows: *const usize, bflags: u32, ) -> Result<()>
fn CopyRows( &self, hsourceid: u16, hreserved: usize, crows: isize, bflags: u32, ) -> Result<usize>
fn DefineSource( &self, prowsetsource: Ref<'_, IRowset>, ccolids: usize, rgsourcecolumns: *const isize, rgtargetcolumns: *const isize, ) -> Result<u16>
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.