pub struct GPS_INJECT_DATA_DATA {
pub target_system: u8,
pub target_component: u8,
pub len: u8,
pub data: [u8; 110],
}๐Deprecated: See
GPS_RTCM_DATA (Deprecated since 2022-05)Available on crate feature
python_array_test only.Expand description
Data for injecting into the onboard GPS (used for DGPS).
ID: 123
Fieldsยง
ยงtarget_system: u8๐Deprecated: See
GPS_RTCM_DATA (Deprecated since 2022-05)System ID
target_component: u8๐Deprecated: See
GPS_RTCM_DATA (Deprecated since 2022-05)Component ID
len: u8๐Deprecated: See
GPS_RTCM_DATA (Deprecated since 2022-05)Data length
data: [u8; 110]๐Deprecated: See
GPS_RTCM_DATA (Deprecated since 2022-05)Raw data (110 is enough for 12 satellites of RTCMv2)
Implementationsยง
Trait Implementationsยง
Sourceยงimpl<'arbitrary> Arbitrary<'arbitrary> for GPS_INJECT_DATA_DATA
impl<'arbitrary> Arbitrary<'arbitrary> for GPS_INJECT_DATA_DATA
Sourceยงfn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the given unstructured data. Read moreSourceยงfn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the entirety of the given
unstructured data. Read moreSourceยงfn size_hint(depth: usize) -> (usize, Option<usize>)
fn size_hint(depth: usize) -> (usize, Option<usize>)
Get a size hint for how many bytes out of an
Unstructured this type
needs to construct itself. Read moreSourceยงfn try_size_hint(
depth: usize,
) -> Result<(usize, Option<usize>), MaxRecursionReached>
fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>
Get a size hint for how many bytes out of an
Unstructured this type
needs to construct itself. Read moreSourceยงimpl Clone for GPS_INJECT_DATA_DATA
impl Clone for GPS_INJECT_DATA_DATA
Sourceยงfn clone(&self) -> GPS_INJECT_DATA_DATA
fn clone(&self) -> GPS_INJECT_DATA_DATA
Returns a duplicate of the value. Read more
1.0.0 ยท 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 GPS_INJECT_DATA_DATA
impl Debug for GPS_INJECT_DATA_DATA
Sourceยงimpl Default for GPS_INJECT_DATA_DATA
impl Default for GPS_INJECT_DATA_DATA
Sourceยงimpl<'de> Deserialize<'de> for GPS_INJECT_DATA_DATA
impl<'de> Deserialize<'de> for GPS_INJECT_DATA_DATA
Sourceยงfn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Sourceยงimpl MessageData for GPS_INJECT_DATA_DATA
impl MessageData for GPS_INJECT_DATA_DATA
Sourceยงimpl PartialEq for GPS_INJECT_DATA_DATA
impl PartialEq for GPS_INJECT_DATA_DATA
Sourceยงimpl Serialize for GPS_INJECT_DATA_DATA
impl Serialize for GPS_INJECT_DATA_DATA
impl StructuralPartialEq for GPS_INJECT_DATA_DATA
Auto Trait Implementationsยง
impl Freeze for GPS_INJECT_DATA_DATA
impl RefUnwindSafe for GPS_INJECT_DATA_DATA
impl Send for GPS_INJECT_DATA_DATA
impl Sync for GPS_INJECT_DATA_DATA
impl Unpin for GPS_INJECT_DATA_DATA
impl UnwindSafe for GPS_INJECT_DATA_DATA
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