[][src]Struct mavlink::common::RESOURCE_REQUEST_DATA

pub struct RESOURCE_REQUEST_DATA {
    pub request_id: u8,
    pub uri_type: u8,
    pub uri: Vec<u8>,
    pub transfer_type: u8,
    pub storage: Vec<u8>,
}

id: 142 The autopilot is requesting a resource (file, binary, other type of data).

Fields

request_id: u8

id: 142 The autopilot is requesting a resource (file, binary, other type of data).

uri_type: u8

id: 142 The autopilot is requesting a resource (file, binary, other type of data).

uri: Vec<u8>

id: 142 The autopilot is requesting a resource (file, binary, other type of data).

transfer_type: u8

id: 142 The autopilot is requesting a resource (file, binary, other type of data).

storage: Vec<u8>

id: 142 The autopilot is requesting a resource (file, binary, other type of data).

Implementations

impl RESOURCE_REQUEST_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 RESOURCE_REQUEST_DATA[src]

impl Debug for RESOURCE_REQUEST_DATA[src]

impl Default for RESOURCE_REQUEST_DATA[src]

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

impl PartialEq<RESOURCE_REQUEST_DATA> for RESOURCE_REQUEST_DATA[src]

impl Serialize for RESOURCE_REQUEST_DATA[src]

impl StructuralPartialEq for RESOURCE_REQUEST_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.