[][src]Struct mavlink::MavFrame

pub struct MavFrame<M: Message> {
    pub header: MavHeader,
    pub msg: M,
    pub protocol_version: MavlinkVersion,
}

Encapsulation of the Mavlink message and the header, important to preserve information about the sender system and component id

Fields

header: MavHeadermsg: Mprotocol_version: MavlinkVersion

Implementations

impl<M: Message> MavFrame<M>[src]

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

Create a new frame with given message Serialize MavFrame into a vector, so it can be sent over a socket, for example.

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

Deserialize MavFrame from a slice that has been received from, for example, a socket.

pub fn header(&self) -> MavHeader[src]

Return the frame header

Trait Implementations

impl<M: Clone + Message> Clone for MavFrame<M>[src]

impl<M: Debug + Message> Debug for MavFrame<M>[src]

impl<M: Message> Serialize for MavFrame<M> where
    M: Serialize
[src]

Auto Trait Implementations

impl<M> RefUnwindSafe for MavFrame<M> where
    M: RefUnwindSafe

impl<M> Send for MavFrame<M> where
    M: Send

impl<M> Sync for MavFrame<M> where
    M: Sync

impl<M> Unpin for MavFrame<M> where
    M: Unpin

impl<M> UnwindSafe for MavFrame<M> where
    M: UnwindSafe

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> 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.