[][src]Struct nyx_space::celestia::Geoid

pub struct Geoid {
    pub id: i32,
    pub center_id: i32,
    pub orientation_id: i32,
    pub gm: f64,
    pub flattening: f64,
    pub equatorial_radius: f64,
    pub semi_major_radius: f64,
}

Fields

id: i32center_id: i32orientation_id: i32gm: f64flattening: f64equatorial_radius: f64semi_major_radius: f64

Methods

impl Geoid[src]

pub fn perfect_sphere(
    id: i32,
    center_id: i32,
    orientation_id: i32,
    gm: f64
) -> Geoid
[src]

Trait Implementations

impl Frame for Geoid[src]

impl Clone for Geoid[src]

impl Copy for Geoid[src]

impl Display for Geoid[src]

impl Debug for Geoid[src]

Auto Trait Implementations

impl Send for Geoid

impl Sync for Geoid

impl Unpin for Geoid

impl UnwindSafe for Geoid

impl RefUnwindSafe for Geoid

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,