[][src]Struct igrf::Field

pub struct Field {
    pub d: f64,
    pub i: f64,
    pub h: f64,
    pub f: f64,
    pub x: f64,
    pub y: f64,
    pub z: f64,
    pub ddot: f64,
    pub fdot: f64,
    pub hdot: f64,
    pub idot: f64,
    pub xdot: f64,
    pub ydot: f64,
    pub zdot: f64,
}

Fields

d: f64

Declination of the field from the geographic north (deg).

i: f64

Inclination of the field (deg).

h: f64f: f64

Total field intensity.

x: f64y: f64z: f64ddot: f64

Annual rate of change of declination. (arc-min/yr).

fdot: f64hdot: f64idot: f64

Annual rate of change of inclination. (arc-min/yr).

xdot: f64ydot: f64zdot: f64

Trait Implementations

impl Debug for Field[src]

impl PartialEq<Field> for Field[src]

impl StructuralPartialEq for Field[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.