1
2
3
4
5
6
7
8
/// Data structure to hold instance implemented [`FromAttr`](trait@crate::FromAttr) trait and parsed attributes.
#[derive(Debug)]
pub struct AttrsValue<A, V> {
    /// The parsed attributes.
    pub attrs: Vec<A>,
    /// The result parsed from the attributes.
    pub value: V,
}