Trait ILocationEvents_Impl
pub trait ILocationEvents_Impl: IUnknownImpl {
// Required methods
fn OnLocationChanged(
&self,
reporttype: *const GUID,
plocationreport: Ref<'_, ILocationReport>,
) -> Result<()>;
fn OnStatusChanged(
&self,
reporttype: *const GUID,
newstatus: LOCATION_REPORT_STATUS,
) -> Result<()>;
}
Required Methods§
fn OnLocationChanged( &self, reporttype: *const GUID, plocationreport: Ref<'_, ILocationReport>, ) -> Result<()>
fn OnStatusChanged( &self, reporttype: *const GUID, newstatus: LOCATION_REPORT_STATUS, ) -> 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.