pub struct Start<'a> {
pub name: Name<'a>,
pub raw_attrs: &'a [u8],
pub self_closing: bool,
pub offset: usize,
}Expand description
A start tag.
Fields§
§name: Name<'a>§raw_attrs: &'a [u8]Bytes between the element name and the closing > or />.
self_closing: bool§offset: usizeByte offset of the <.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Start<'a>
impl<'a> RefUnwindSafe for Start<'a>
impl<'a> Send for Start<'a>
impl<'a> Sync for Start<'a>
impl<'a> Unpin for Start<'a>
impl<'a> UnsafeUnpin for Start<'a>
impl<'a> UnwindSafe for Start<'a>
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