pub struct MagneticComponents {
pub declination: f64,
pub inclination: f64,
pub horizontal_intensity: f64,
pub orthogonal_strength: OrthogonalStrength,
pub total_intensity: f64,
}
Expand description
Components needed to determine Earth’s magnetic field at a given location Detailed info: https://www.geomag.nrcan.gc.ca/mag_fld/comp-en.php
Fields§
§declination: f64
Declination (D) (degrees)
inclination: f64
Inclination (D) (degrees)
horizontal_intensity: f64
Horizontal intensity (H) (nT)
orthogonal_strength: OrthogonalStrength
Orthogonal strength components
total_intensity: f64
Total intensity (F) (nT)
Auto Trait Implementations§
impl Freeze for MagneticComponents
impl RefUnwindSafe for MagneticComponents
impl Send for MagneticComponents
impl Sync for MagneticComponents
impl Unpin for MagneticComponents
impl UnwindSafe for MagneticComponents
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