[go: up one dir, main page]

darling_core 0.1.0

Helper crate for proc-macro library for reading attributes into structs when implementing custom derives. Use `darling` to get library functionality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Utility types for attribute parsing.

mod body;
mod ident_list;
mod over_ride;
mod variant_data;

pub use self::body::Body;
pub use self::ident_list::IdentList;
pub use self::over_ride::Override;
pub use self::variant_data::VariantData;