pub struct CometInfoElliptical {
pub name: String,
pub epoch: f64,
pub peri: f64,
pub node: f64,
pub period: f64,
pub axis: f64,
pub ecc: f64,
pub incl: f64,
}
Expand description
Info about a comet (elliptical):
name
– Name of comet.epoch
– Epoch of the perihelion.peri
– Longitude of the perihelion.node
– Longitude of the ascending node.period
– Period of the orbit.axis
– Semi-major axis of the orbit.ecc
– Eccentricity of the orbit.incl
– Inclination of the orbit.
Fields§
§name: String
§epoch: f64
§peri: f64
§node: f64
§period: f64
§axis: f64
§ecc: f64
§incl: f64
Auto Trait Implementations§
impl RefUnwindSafe for CometInfoElliptical
impl Send for CometInfoElliptical
impl Sync for CometInfoElliptical
impl Unpin for CometInfoElliptical
impl UnwindSafe for CometInfoElliptical
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