pub struct SpaceObject {
pub active: bool,
pub name: String,
pub coefficient_length: i32,
/* private fields */
}Expand description
Represents a celestial body in the ephemeris
Fields§
§active: boolWhether this object is active
name: StringName of the object
coefficient_length: i32Length of coefficients for this object
Trait Implementations§
Source§impl Clone for SpaceObject
impl Clone for SpaceObject
Source§fn clone(&self) -> SpaceObject
fn clone(&self) -> SpaceObject
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SpaceObject
impl RefUnwindSafe for SpaceObject
impl Send for SpaceObject
impl Sync for SpaceObject
impl Unpin for SpaceObject
impl UnwindSafe for SpaceObject
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