pub struct StartTagTrace {
pub span: Range<usize>,
pub name_span: Range<usize>,
pub attribute_traces: AttributeTraceList,
}
Expand description
Provides byte offsets and syntax information for a StartTag
token.
Fields§
§span: Range<usize>
The span of the tag.
name_span: Range<usize>
The span of the tag name.
attribute_traces: AttributeTraceList
List of AttributeTrace
s for the attributes that were present in the source.
Trait Implementations§
Source§impl Debug for StartTagTrace
impl Debug for StartTagTrace
Source§impl PartialEq for StartTagTrace
impl PartialEq for StartTagTrace
impl Eq for StartTagTrace
impl StructuralPartialEq for StartTagTrace
Auto Trait Implementations§
impl Freeze for StartTagTrace
impl RefUnwindSafe for StartTagTrace
impl Send for StartTagTrace
impl Sync for StartTagTrace
impl Unpin for StartTagTrace
impl UnwindSafe for StartTagTrace
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more