from_attr/
attrs_value.rs

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