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.
5pub attrs: Vec<A>,
6/// The result parsed from the attributes.
7pub value: V,
8}