Trait IDispLatLongReport_Impl
pub trait IDispLatLongReport_Impl: 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>
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.