pub struct TackLegs {
pub starboard_nm: f64,
pub port_nm: f64,
pub starboard_heading_deg: f64,
pub port_heading_deg: f64,
}Expand description
How far to sail on each tack to fetch a mark dead to windward.
Fields§
§starboard_nm: f64Distance to sail on starboard tack, nautical miles.
port_nm: f64Distance to sail on port tack, nautical miles.
starboard_heading_deg: f64Heading on starboard tack, degrees true.
port_heading_deg: f64Heading on port tack, degrees true.
Implementations§
Trait Implementations§
impl Copy for TackLegs
impl StructuralPartialEq for TackLegs
Auto Trait Implementations§
impl Freeze for TackLegs
impl RefUnwindSafe for TackLegs
impl Send for TackLegs
impl Sync for TackLegs
impl Unpin for TackLegs
impl UnsafeUnpin for TackLegs
impl UnwindSafe for TackLegs
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