typhoon-protocol 0.1.0

A sample implementation of TYPHOON protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Type-safe configuration settings for the TYPHOON protocol.

mod builder;
mod error;
mod override_map;
mod statics;
mod structure;

pub use builder::SettingsBuilder;
pub use error::SettingsError;
pub use override_map::{Key, OverrideMap, SettingType, SettingValue};
pub use statics::{consts, keys};
pub use structure::Settings;