/// Data structure to hold instance implemented [`FromAttr`](trait@crate::FromAttr) trait and parsed attributes.
#[derive(Debug)]pubstructAttrsValue<A, V>{/// The parsed attributes.
pubattrs:Vec<A>,
/// The result parsed from the attributes.
pubvalue: V,
}