awdl_frame_parser/
lib.rs

1#![no_std]
2#![forbid(unsafe_code)]
3
4#[cfg(test)]
5extern crate alloc;
6
7/// Structures related to AWDL action frames.
8pub mod action_frame;
9/// Structures, which are shared between multiple TLVs and frame types.
10pub mod common;
11pub mod data_frame;
12/// Every TLV currently understood.
13pub mod tlvs;