armour-typ 0.1.0

Shared schema/type descriptors (Typ, ScalarTyp, GetType) for the armour ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![warn(clippy::unwrap_used)]

pub mod get_type;
pub mod scalar;
pub mod schema;
pub mod typ;

#[cfg(feature = "deserialize")]
pub mod deserialize;

pub use armour_derive::GetType;
pub use get_type::GetType;
pub use scalar::ScalarTyp;
pub use schema::{SchemaFields, SchemaTyp};
pub use typ::{EnumType, Fields, SimpleEnumType, StructType, Typ};