[−][src]Struct mavlink::MavFrame
Encapsulation of the Mavlink message and the header, important to preserve information about the sender system and component id
Fields
header: MavHeadermsg: Mprotocol_version: MavlinkVersionImplementations
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]
M: Serialize,
Auto Trait Implementations
impl<M> RefUnwindSafe for MavFrame<M> where
M: RefUnwindSafe,
M: RefUnwindSafe,
impl<M> Send for MavFrame<M> where
M: Send,
M: Send,
impl<M> Sync for MavFrame<M> where
M: Sync,
M: Sync,
impl<M> Unpin for MavFrame<M> where
M: Unpin,
M: Unpin,
impl<M> UnwindSafe for MavFrame<M> where
M: UnwindSafe,
M: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,