pub struct EarthShape {
pub shape: u8,
pub spherical_earth_radius_scale_factor: u8,
pub spherical_earth_radius_scaled_value: u32,
pub major_axis_scale_factor: u8,
pub major_axis_scaled_value: u32,
pub minor_axis_scale_factor: u8,
pub minor_axis_scaled_value: u32,
}Fields§
§shape: u8Shape of the Earth (see Code table 3.2).
spherical_earth_radius_scale_factor: u8Scale factor of radius of spherical Earth.
spherical_earth_radius_scaled_value: u32Scaled value of radius of spherical Earth.
major_axis_scale_factor: u8Scale factor of major axis of oblate spheroid Earth.
major_axis_scaled_value: u32Scaled value of major axis of oblate spheroid Earth.
minor_axis_scale_factor: u8Scale factor of minor axis of oblate spheroid Earth.
minor_axis_scaled_value: u32Scaled value of minor axis of oblate spheroid Earth.
Implementations§
Trait Implementations§
Source§impl Debug for EarthShape
impl Debug for EarthShape
Source§impl Dump for EarthShape
impl Dump for EarthShape
Source§impl PartialEq for EarthShape
impl PartialEq for EarthShape
Source§impl TryFromSlice for EarthShape
impl TryFromSlice for EarthShape
impl Eq for EarthShape
impl StructuralPartialEq for EarthShape
Auto Trait Implementations§
impl Freeze for EarthShape
impl RefUnwindSafe for EarthShape
impl Send for EarthShape
impl Sync for EarthShape
impl Unpin for EarthShape
impl UnsafeUnpin for EarthShape
impl UnwindSafe for EarthShape
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more