use std::ops::Range; /// A HTML attribute value (plus spans). #[derive(Debug, Eq, PartialEq)] pub struct Attribute { /// The value of the attribute. pub value: String, /// The source code span of the attribute name. pub name_span: Range, /// The source code span of the attribute value. pub value_span: Range, }