pub struct Wind {
pub direction_true_deg: f64,
pub speed_true_kn: f64,
}Expand description
The vessel’s true wind, direct from the server’s own calculation or
derived from apparent wind – see WindTracker::wind for which, and
when.
Fields§
§direction_true_deg: f64Degrees true – an absolute bearing the wind blows from, not an angle off the bow.
speed_true_kn: f64Knots.
Trait Implementations§
impl Copy for Wind
impl StructuralPartialEq for Wind
Auto Trait Implementations§
impl Freeze for Wind
impl RefUnwindSafe for Wind
impl Send for Wind
impl Sync for Wind
impl Unpin for Wind
impl UnsafeUnpin for Wind
impl UnwindSafe for Wind
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