icydb-model-macros 0.217.0

Procedural macros for IcyDB application models
Documentation
//! Module: node
//! Responsibility: derive-side node parsing.
//! Does not own: runtime schema semantics.
//! Boundary: macro metadata to node models.

mod arg;
mod canister;
mod constraint;
mod def;
mod entity;
mod r#enum;
mod field;
mod field_list_arg;
mod index;
mod item;
mod list;
mod map;
mod newtype;
mod normalizer;
mod primary_key;
mod record;
mod relation;
mod set;
mod store;
mod traits;
mod tuple;
mod r#type;
mod typed_adapter;
mod validator;
mod value;

pub use arg::*;
pub use canister::*;
pub(crate) use constraint::*;
pub use def::*;
pub use entity::*;
pub use r#enum::*;
pub use field::*;
pub use index::*;
pub use item::*;
pub use list::*;
pub use map::*;
pub use newtype::*;
pub use normalizer::*;
pub use primary_key::*;
pub use record::*;
pub use relation::*;
pub use set::*;
pub use store::*;
pub use traits::*;
pub use tuple::*;
pub use r#type::*;
pub use validator::*;
pub use value::*;