pub type Attributes<'a> = Box<dyn Iterator<Item = &'a Attribute> + 'a>;
Expand description
An iterator over the Attribute
s within a Body
.
Values of this type are created by the attributes
method on Body
. See its documentation
for more.
Aliased Typeยง
struct Attributes<'a>(/* private fields */);