macro_input_core/
lib.rs

1//!
2#![deny(missing_docs, clippy::doc_markdown)]
3
4mod convert;
5mod field;
6mod fields;
7#[cfg(feature = "legacy")]
8mod r#struct;
9mod ty;
10mod value;
11
12pub use convert::*;
13pub use field::Def;
14pub use fields::Defs;
15#[cfg(feature = "legacy")]
16pub use r#struct::StructLint;
17pub use ty::{Type, Types};
18pub use value::DefaultValue;