[][src]Struct sgp4_rs::GreenwichMeanSiderealTime

pub struct GreenwichMeanSiderealTime(_);

Wrapper type representing the angular form of Greenwich Mean Sidereal Time.

This is primarily used to account for the Earth's rotation during conversion between fixed and inertial coordinate frames. Note that this is an angle measured in radians, and not a "time" as such. The value may range from 0 to 2π.

Implementations

impl GreenwichMeanSiderealTime[src]

pub fn as_radians(&self) -> f64[src]

Trait Implementations

impl From<DateTime<Utc>> for GreenwichMeanSiderealTime[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.