pub struct GpsQzssFrame {
pub how: GpsQzssHow,
pub telemetry: GpsQzssTelemetry,
pub subframe: GpsQzssSubframe,
}Available on crate feature
gps only.Expand description
GPS / QZSS interpreted frame.
Fields§
§how: GpsQzssHowGpsQzssHow describes following frame.
telemetry: GpsQzssTelemetryGpsQzssTelemetry describes following frame.
subframe: GpsQzssSubframeGpsQzssSubframe depends on associated How.
Trait Implementations§
Source§impl Clone for GpsQzssFrame
impl Clone for GpsQzssFrame
Source§fn clone(&self) -> GpsQzssFrame
fn clone(&self) -> GpsQzssFrame
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 GpsQzssFrame
Source§impl Debug for GpsQzssFrame
impl Debug for GpsQzssFrame
Source§impl PartialEq for GpsQzssFrame
impl PartialEq for GpsQzssFrame
Source§fn eq(&self, other: &GpsQzssFrame) -> bool
fn eq(&self, other: &GpsQzssFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GpsQzssFrame
Auto Trait Implementations§
impl Freeze for GpsQzssFrame
impl RefUnwindSafe for GpsQzssFrame
impl Send for GpsQzssFrame
impl Sync for GpsQzssFrame
impl Unpin for GpsQzssFrame
impl UnsafeUnpin for GpsQzssFrame
impl UnwindSafe for GpsQzssFrame
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