[][src]Struct tle_parser::TLE

pub struct TLE {
    pub name: String,
    pub satellite_number: u32,
    pub classification: char,
    pub international_designator: String,
    pub epoch: String,
    pub first_derivative_mean_motion: f64,
    pub second_derivative_mean_motion: f64,
    pub drag_term: f64,
    pub ephemeris_type: u32,
    pub element_number: u32,
    pub inclination: f64,
    pub right_ascension: f64,
    pub eccentricity: f64,
    pub argument_of_perigee: f64,
    pub mean_anomaly: f64,
    pub mean_motion: f64,
    pub revolution_number: u32,
}

Fields

name: Stringsatellite_number: u32classification: charinternational_designator: Stringepoch: Stringfirst_derivative_mean_motion: f64second_derivative_mean_motion: f64drag_term: f64ephemeris_type: u32element_number: u32inclination: f64right_ascension: f64eccentricity: f64argument_of_perigee: f64mean_anomaly: f64mean_motion: f64revolution_number: u32

Trait Implementations

impl Debug for TLE[src]

impl PartialEq<TLE> for TLE[src]

impl StructuralPartialEq for TLE[src]

Auto Trait Implementations

impl RefUnwindSafe for TLE

impl Send for TLE

impl Sync for TLE

impl Unpin for TLE

impl UnwindSafe for TLE

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.