Darling

darling is a crate for proc macro authors, which enables parsing attributes into structs. It is heavily inspired by serde both in its internals and in its API.

Usage

darling provides a set of traits which can be derived or manually implemented.

  1. FromMetaItem is used to extract values from a meta-item in an attribute. Implementations are likely reusable for many libraries, much like FromStr or serde::Deserialize. Trait implementations are provided for primitives, some std types, and some syn types.
  2. FromDeriveInput is implemented or derived by each proc-macro crate which depends on darling. This is the root for input parsing; it gets access to the identity, generics, and visibility of the target type, and can specify which attribute names should be parsed or forwarded from the input AST.
  3. FromField is implemented or derived by each proc-macro crate which depends on darling. Structs deriving this trait will get access to the identity (if it exists), type, and visibility of the field.

Example

```rust,ignore

[macro_use]

extern crate darling;

[derive(FromMetaItem)]

pub struct Lorem { #[darling(default = "local", rename = "sit")] ipsum: bool, #[darling(default)] dolor: Option, } ```

Features

Darling's features are built to work well for real-world projects.

To Do