pub struct MapPoint {
pub raw_point: RawPoint,
pub connections: Vec<String>,
/* private fields */
}Expand description
Struct that contains coordinates to help calculate nearest point in space
Fields§
§raw_point: RawPointcoordinates of the Solar System
connections: Vec<String>coordinates for lines connecting this point
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MapPoint
impl RefUnwindSafe for MapPoint
impl Send for MapPoint
impl Sync for MapPoint
impl Unpin for MapPoint
impl UnwindSafe for MapPoint
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