Struct mavlink::common::TERRAIN_DATA_DATA
source · pub struct TERRAIN_DATA_DATA {
pub lat: i32,
pub lon: i32,
pub grid_spacing: u16,
pub data: [i16; 16],
pub gridbit: u8,
}
Available on crate feature
common
only.Expand description
id: 134 Terrain data sent from GCS. The lat/lon and grid_spacing must be the same as a lat/lon from a TERRAIN_REQUEST. See terrain protocol docs: https://mavlink.io/en/services/terrain.html.
Fields§
§lat: i32
Latitude of SW corner of first grid.
lon: i32
Longitude of SW corner of first grid.
grid_spacing: u16
Grid spacing.
data: [i16; 16]
Terrain data MSL.
gridbit: u8
bit within the terrain request mask.
Implementations§
source§impl TERRAIN_DATA_DATA
impl TERRAIN_DATA_DATA
pub const ENCODED_LEN: usize = 43usize
pub const DEFAULT: Self = _
Trait Implementations§
source§impl Clone for TERRAIN_DATA_DATA
impl Clone for TERRAIN_DATA_DATA
source§fn clone(&self) -> TERRAIN_DATA_DATA
fn clone(&self) -> TERRAIN_DATA_DATA
Returns a copy 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 TERRAIN_DATA_DATA
impl Debug for TERRAIN_DATA_DATA
source§impl Default for TERRAIN_DATA_DATA
impl Default for TERRAIN_DATA_DATA
source§impl<'de> Deserialize<'de> for TERRAIN_DATA_DATA
impl<'de> Deserialize<'de> for TERRAIN_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 TERRAIN_DATA_DATA
impl MessageData for TERRAIN_DATA_DATA
const ID: u32 = 134u32
const NAME: &'static str = "TERRAIN_DATA"
const EXTRA_CRC: u8 = 229u8
const ENCODED_LEN: usize = 43usize
type Message = MavMessage
fn deser(_version: MavlinkVersion, __input: &[u8]) -> Result<Self, ParserError>
fn ser(&self, version: MavlinkVersion, bytes: &mut [u8]) -> usize
source§impl PartialEq for TERRAIN_DATA_DATA
impl PartialEq for TERRAIN_DATA_DATA
source§impl Serialize for TERRAIN_DATA_DATA
impl Serialize for TERRAIN_DATA_DATA
impl StructuralPartialEq for TERRAIN_DATA_DATA
Auto Trait Implementations§
impl Freeze for TERRAIN_DATA_DATA
impl RefUnwindSafe for TERRAIN_DATA_DATA
impl Send for TERRAIN_DATA_DATA
impl Sync for TERRAIN_DATA_DATA
impl Unpin for TERRAIN_DATA_DATA
impl UnwindSafe for TERRAIN_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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)