pub trait IDispLatLongReport_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Latitude(&self) -> Result<f64>;
    fn Longitude(&self) -> Result<f64>;
    fn ErrorRadius(&self) -> Result<f64>;
    fn Altitude(&self) -> Result<f64>;
    fn AltitudeError(&self) -> Result<f64>;
    fn Timestamp(&self) -> Result<f64>;
}

Required Methods§

fn Latitude(&self) -> Result<f64>

fn Longitude(&self) -> Result<f64>

fn ErrorRadius(&self) -> Result<f64>

fn Altitude(&self) -> Result<f64>

fn AltitudeError(&self) -> Result<f64>

fn Timestamp(&self) -> Result<f64>

Object Safety§

This trait is not object safe.

Implementors§