windows::Win32::System::Search

Trait IRowsetChange_Impl

pub trait IRowsetChange_Impl: IUnknownImpl {
    // Required methods
    fn DeleteRows(
        &self,
        hreserved: usize,
        crows: usize,
        rghrows: *const usize,
        rgrowstatus: *mut u32,
    ) -> Result<()>;
    fn SetData(
        &self,
        hrow: usize,
        haccessor: HACCESSOR,
        pdata: *const c_void,
    ) -> Result<()>;
    fn InsertRow(
        &self,
        hreserved: usize,
        haccessor: HACCESSOR,
        pdata: *const c_void,
    ) -> Result<usize>;
}

Required Methods§

fn DeleteRows( &self, hreserved: usize, crows: usize, rghrows: *const usize, rgrowstatus: *mut u32, ) -> Result<()>

fn SetData( &self, hrow: usize, haccessor: HACCESSOR, pdata: *const c_void, ) -> Result<()>

fn InsertRow( &self, hreserved: usize, haccessor: HACCESSOR, pdata: *const c_void, ) -> Result<usize>

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.

Implementors§