Skip to main content

ios_config_core/
lib.rs

1#![deny(missing_docs)]
2#![doc = include_str!("../README.md")]
3
4pub mod ir;
5pub use ir::*;
6
7// The IR types are documented in the `ir` module. Struct fields that are
8// self-evident (e.g. `asn: u32`, `name: String`) carry `#[allow(missing_docs)]`
9// at the module level in ir.rs rather than cluttering every field.