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
12
13
14
15
16
17
18
//! # Utils
//!
//! Utility functions, structs and traits which does not fall into any category.

pub(crate) mod sealed;
#[cfg(feature = "sha2")]
mod signer;
#[cfg(feature = "extras")]
mod slice_rw;
#[cfg(feature = "unsafe")]
mod update;

#[cfg(feature = "sha2")]
pub use signer::MavSha256;
#[cfg(feature = "extras")]
pub use slice_rw::{SliceReader, SliceWriter};
#[cfg(feature = "unsafe")]
pub use update::TryUpdateFrom;