rfham_core/lib.rs
1//!
2//! One-line description.
3//!
4//! More detailed description.
5//!
6//! # Examples
7//!
8//! ```rust
9//! ```
10//!
11//! # Features
12//!
13//! - **feature-name**; Feature description
14//!
15//!
16
17#[allow(unused_extern_crates)]
18extern crate alloc;
19
20// ------------------------------------------------------------------------------------------------
21// Modules
22// ------------------------------------------------------------------------------------------------
23
24pub mod error;
25
26pub mod agency;
27pub use agency::Agency;
28pub mod callsign;
29pub mod conversions;
30pub mod country;
31pub use country::CountryCode;
32pub mod fmt;
33pub mod frequency;
34pub use frequency::Frequency;
35pub mod id;
36pub use id::Name;
37pub mod power;
38pub use power::Power;