pub struct Star {
pub coordinates: StarCoordinates,
pub v_mag: f64,
pub name: String,
pub harvard: u32,
}Expand description
Generic star structure.
TODO: move this to a different crate and implement
fromtraits for the catalog star structs in this crate.
Fields§
§coordinates: StarCoordinates§v_mag: f64§name: String§harvard: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Star
impl RefUnwindSafe for Star
impl Send for Star
impl Sync for Star
impl Unpin for Star
impl UnwindSafe for Star
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