pub trait ILatLongReport_Impl: Sized + ILocationReport_Impl {
    // Required methods
    fn GetLatitude(&self) -> Result<f64>;
    fn GetLongitude(&self) -> Result<f64>;
    fn GetErrorRadius(&self) -> Result<f64>;
    fn GetAltitude(&self) -> Result<f64>;
    fn GetAltitudeError(&self) -> Result<f64>;
}

Required Methods§

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

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§