pub struct EstimatedPosition {
pub position: Position,
pub track: GroundTrack,
pub distance_made_good: Distance,
}Expand description
An estimated position, with the ground track that produced it.
Fields§
§position: PositionWhere the ship is estimated to be.
track: GroundTrackCourse and speed made good over the ground.
distance_made_good: DistanceDistance made good over the ground.
Trait Implementations§
Source§impl Clone for EstimatedPosition
impl Clone for EstimatedPosition
Source§fn clone(&self) -> EstimatedPosition
fn clone(&self) -> EstimatedPosition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EstimatedPosition
Source§impl Debug for EstimatedPosition
impl Debug for EstimatedPosition
Source§impl PartialEq for EstimatedPosition
impl PartialEq for EstimatedPosition
impl StructuralPartialEq for EstimatedPosition
Auto Trait Implementations§
impl Freeze for EstimatedPosition
impl RefUnwindSafe for EstimatedPosition
impl Send for EstimatedPosition
impl Sync for EstimatedPosition
impl Unpin for EstimatedPosition
impl UnsafeUnpin for EstimatedPosition
impl UnwindSafe for EstimatedPosition
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