pub struct MicESpeedCourse {
pub speed_knots: u16,
pub course_degrees: u16,
}Expand description
Mic-E speed/course extension.
Fields§
§speed_knots: u16Speed in knots.
course_degrees: u16Course in degrees as encoded by Mic-E.
Trait Implementations§
Source§impl Clone for MicESpeedCourse
impl Clone for MicESpeedCourse
Source§fn clone(&self) -> MicESpeedCourse
fn clone(&self) -> MicESpeedCourse
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 moreSource§impl Debug for MicESpeedCourse
impl Debug for MicESpeedCourse
Source§impl PartialEq for MicESpeedCourse
impl PartialEq for MicESpeedCourse
Source§fn eq(&self, other: &MicESpeedCourse) -> bool
fn eq(&self, other: &MicESpeedCourse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MicESpeedCourse
impl Eq for MicESpeedCourse
impl StructuralPartialEq for MicESpeedCourse
Auto Trait Implementations§
impl Freeze for MicESpeedCourse
impl RefUnwindSafe for MicESpeedCourse
impl Send for MicESpeedCourse
impl Sync for MicESpeedCourse
impl Unpin for MicESpeedCourse
impl UnsafeUnpin for MicESpeedCourse
impl UnwindSafe for MicESpeedCourse
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