pub trait ILocationEvents_Impl: Sized {
    // Required methods
    fn OnLocationChanged(
        &self,
        reporttype: *const GUID,
        plocationreport: Option<&ILocationReport>
    ) -> Result<()>;
    fn OnStatusChanged(
        &self,
        reporttype: *const GUID,
        newstatus: LOCATION_REPORT_STATUS
    ) -> Result<()>;
}

Required Methods§

fn OnLocationChanged( &self, reporttype: *const GUID, plocationreport: Option<&ILocationReport> ) -> Result<()>

fn OnStatusChanged( &self, reporttype: *const GUID, newstatus: LOCATION_REPORT_STATUS ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§