darling_core 0.23.0

Helper crate for proc-macro library for reading attributes into structs when implementing custom derives. Use https://crates.io/crates/darling in your code.
Documentation
1
2
3
4
5
6
7
8
9
use std::collections::HashSet;

use syn::Ident;

/// A set of idents.
pub type IdentSet = HashSet<Ident>;

/// A set of references to idents.
pub type IdentRefSet<'a> = HashSet<&'a Ident>;