Trait windows::Win32::System::Search::IRowsetNotify_Impl

pub trait IRowsetNotify_Impl: Sized {
    // Required methods
    fn OnFieldChange(
        &self,
        prowset: Option<&IRowset>,
        hrow: usize,
        ccolumns: usize,
        rgcolumns: *const usize,
        ereason: u32,
        ephase: u32,
        fcantdeny: BOOL,
    ) -> Result<()>;
    fn OnRowChange(
        &self,
        prowset: Option<&IRowset>,
        crows: usize,
        rghrows: *const usize,
        ereason: u32,
        ephase: u32,
        fcantdeny: BOOL,
    ) -> Result<()>;
    fn OnRowsetChange(
        &self,
        prowset: Option<&IRowset>,
        ereason: u32,
        ephase: u32,
        fcantdeny: BOOL,
    ) -> Result<()>;
}

Required Methods§

fn OnFieldChange( &self, prowset: Option<&IRowset>, hrow: usize, ccolumns: usize, rgcolumns: *const usize, ereason: u32, ephase: u32, fcantdeny: BOOL, ) -> Result<()>

fn OnRowChange( &self, prowset: Option<&IRowset>, crows: usize, rghrows: *const usize, ereason: u32, ephase: u32, fcantdeny: BOOL, ) -> Result<()>

fn OnRowsetChange( &self, prowset: Option<&IRowset>, ereason: u32, ephase: u32, fcantdeny: BOOL, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§