mavio 0.5.10

Minimalistic MAVLink client that supports `no-std` and `no-alloc` targets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Common generic markers.
//!
//! These markers are used to distinguish different versions of generic entities.

mod private;
mod unset;
mod version;

pub use private::*;
pub use unset::Unset;
pub use version::{MaybeVersioned, Versioned, Versionless, V1, V2};