pub trait ILocationReport_Impl: Sized {
    // Required methods
    fn GetSensorID(&self) -> Result<GUID>;
    fn GetTimestamp(&self) -> Result<SYSTEMTIME>;
    fn GetValue(&self, pkey: *const PROPERTYKEY) -> Result<PROPVARIANT>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§