pub struct EarthShape {
pub shape: u8,
pub spherical_earth_radius: ScaledValue<u8, u32>,
pub major_axis: ScaledValue<u8, u32>,
pub minor_axis: ScaledValue<u8, u32>,
}Fields§
§shape: u8Shape of the Earth (see Code table 3.2).
spherical_earth_radius: ScaledValue<u8, u32>Radius of spherical Earth.
major_axis: ScaledValue<u8, u32>Major axis of oblate spheroid Earth.
minor_axis: ScaledValue<u8, u32>Minor axis of oblate spheroid Earth.
Implementations§
Trait Implementations§
Source§impl Clone for EarthShape
impl Clone for EarthShape
Source§fn clone(&self) -> EarthShape
fn clone(&self) -> EarthShape
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EarthShape
impl Debug for EarthShape
Source§impl Dump for EarthShape
impl Dump for EarthShape
impl Eq for EarthShape
Source§impl PartialEq for EarthShape
impl PartialEq for EarthShape
impl StructuralPartialEq for EarthShape
Source§impl TryFromSlice for EarthShape
impl TryFromSlice for EarthShape
Source§impl WriteToBuffer for EarthShape
impl WriteToBuffer 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