pub struct CometInfoParabolic {
pub name: String,
pub epoch_peri_day: f64,
pub epoch_peri_month: u32,
pub epoch_peri_year: u32,
pub arg_peri: f64,
pub node: f64,
pub peri_dist: f64,
pub incl: f64,
}
Expand description
Info about a comet (parabolic):
- epoch_peri_day – Epoch of the perihelion (day)
- epoch_peri_month – Epoch of the perihelion (month)
- epoch_peri_year – Epoch of the perihelion (year)
- arg_peri – Longitude of the perihelion (degrees)
- node – Longitude of the ascending node (degrees)
- peri_dist – Distance at perihelion (AU)
- incl – Orbital inclination (degrees)
Fields§
§name: String
§epoch_peri_day: f64
§epoch_peri_month: u32
§epoch_peri_year: u32
§arg_peri: f64
§node: f64
§peri_dist: f64
§incl: f64
Auto Trait Implementations§
impl RefUnwindSafe for CometInfoParabolic
impl Send for CometInfoParabolic
impl Sync for CometInfoParabolic
impl Unpin for CometInfoParabolic
impl UnwindSafe for CometInfoParabolic
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more