[][src]Struct mavlink::common::CAMERA_IMAGE_CAPTURED_DATA

pub struct CAMERA_IMAGE_CAPTURED_DATA {
    pub time_utc: u64,
    pub time_boot_ms: u32,
    pub lat: i32,
    pub lon: i32,
    pub alt: i32,
    pub relative_alt: i32,
    pub q: [f32; 4],
    pub image_index: i32,
    pub camera_id: u8,
    pub capture_result: i8,
    pub file_url: Vec<char>,
}

id: 263 Information about a captured image.

Fields

time_utc: u64

id: 263 Information about a captured image.

time_boot_ms: u32

id: 263 Information about a captured image.

lat: i32

id: 263 Information about a captured image.

lon: i32

id: 263 Information about a captured image.

alt: i32

id: 263 Information about a captured image.

relative_alt: i32

id: 263 Information about a captured image.

q: [f32; 4]

id: 263 Information about a captured image.

image_index: i32

id: 263 Information about a captured image.

camera_id: u8

id: 263 Information about a captured image.

capture_result: i8

id: 263 Information about a captured image.

file_url: Vec<char>

id: 263 Information about a captured image.

Implementations

impl CAMERA_IMAGE_CAPTURED_DATA[src]

pub const ENCODED_LEN: usize[src]

pub fn deser(
    version: MavlinkVersion,
    _input: &[u8]
) -> Result<Self, ParserError>
[src]

pub fn ser(&self) -> Vec<u8>[src]

Trait Implementations

impl Clone for CAMERA_IMAGE_CAPTURED_DATA[src]

impl Debug for CAMERA_IMAGE_CAPTURED_DATA[src]

impl Default for CAMERA_IMAGE_CAPTURED_DATA[src]

impl<'de> Deserialize<'de> for CAMERA_IMAGE_CAPTURED_DATA[src]

impl PartialEq<CAMERA_IMAGE_CAPTURED_DATA> for CAMERA_IMAGE_CAPTURED_DATA[src]

impl Serialize for CAMERA_IMAGE_CAPTURED_DATA[src]

impl StructuralPartialEq for CAMERA_IMAGE_CAPTURED_DATA[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.