pub struct BinaryInfo {
pub name: String,
pub period: f64,
pub epoch_peri: f64,
pub long_peri: f64,
pub ecc: f64,
pub axis: f64,
pub incl: f64,
pub pa_node: f64,
}Expand description
Info about a binary system:
name– Name of binary system.period– Period of the orbit.epoch_peri– Epoch of the perihelion.long_peri– Longitude of the perihelion.ecc– Eccentricity of the orbit.axis– Semi-major axis of the orbit.incl– Orbital inclination.pa_node– Position angle of the ascending node.
Fields§
§name: String§period: f64§epoch_peri: f64§long_peri: f64§ecc: f64§axis: f64§incl: f64§pa_node: f64Auto Trait Implementations§
impl Freeze for BinaryInfo
impl RefUnwindSafe for BinaryInfo
impl Send for BinaryInfo
impl Sync for BinaryInfo
impl Unpin for BinaryInfo
impl UnsafeUnpin for BinaryInfo
impl UnwindSafe for BinaryInfo
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