pub struct TLEData {Show 19 fields
pub name: String,
pub number: f64,
pub class: Classification,
pub id: String,
pub date: Date,
pub epochdays: f64,
pub fdmm: f64,
pub sdmm: f64,
pub drag: f64,
pub ephemeris: f64,
pub esn: f64,
pub inclination: f64,
pub ascension: f64,
pub eccentricity: f64,
pub perigee: f64,
pub anomaly: f64,
pub motion: f64,
pub revolution: f64,
pub rms: Option<f64>,
}Expand description
TLE Data Interface
Fields§
§name: StringName
number: f64Number
class: ClassificationClassification
id: StringIdentifier
date: DateDate
epochdays: f64Epoch Days
fdmm: f64fd mm
sdmm: f64sd mm
drag: f64Drag coefficient
ephemeris: f64Mean motion
esn: f64Eccentricity
inclination: f64Inclination
ascension: f64Right ascension
eccentricity: f64Eccentricity
perigee: f64Perigee
anomaly: f64Mean anomaly
motion: f64Mean motion
revolution: f64Revolution
rms: Option<f64>Bstar
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TLEData
impl<'de> Deserialize<'de> for TLEData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&TLEDataCelestrak> for TLEData
Convert Celestrak TLE data to a standard TLE data object
JSON example
impl From<&TLEDataCelestrak> for TLEData
Convert Celestrak TLE data to a standard TLE data object JSON example
Source§fn from(data: &TLEDataCelestrak) -> Self
fn from(data: &TLEDataCelestrak) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for TLEData
Auto Trait Implementations§
impl Freeze for TLEData
impl RefUnwindSafe for TLEData
impl Send for TLEData
impl Sync for TLEData
impl Unpin for TLEData
impl UnwindSafe for TLEData
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().