fieldx_core 0.2.3

Various types and tools useful implementing fieldx_derive core functionality. May provide useful APIs for 3rd-party crates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc(html_root_url = "https://docs.rs/fieldx_core/0.2.3/")]
//! This crates implements basic elements of the core functionality of the FieldX. It can be used by 3rd-party crates
//! to extend the FieldX functionality or implement their own proc-macros.
//!
//! **Note:** Unfortunately, the lack of time doesn't allow to properly document this crate. But the time will come for it!
pub mod codegen;
pub mod ctx;
pub mod field_receiver;
pub mod struct_receiver;
pub mod types;
pub mod util;