pub struct HTMLCloseTagNode {
pub node_type: String,
pub location: Location,
pub errors: Vec<AnyError>,
pub tag_opening: Option<Token>,
pub tag_name: Option<Token>,
pub children: Vec<AnyNode>,
pub tag_closing: Option<Token>,
}Fields§
§node_type: String§location: Location§errors: Vec<AnyError>§tag_opening: Option<Token>§tag_name: Option<Token>§children: Vec<AnyNode>§tag_closing: Option<Token>Trait Implementations§
Source§impl Clone for HTMLCloseTagNode
impl Clone for HTMLCloseTagNode
Source§fn clone(&self) -> HTMLCloseTagNode
fn clone(&self) -> HTMLCloseTagNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HTMLCloseTagNode
impl Debug for HTMLCloseTagNode
Auto Trait Implementations§
impl Freeze for HTMLCloseTagNode
impl RefUnwindSafe for HTMLCloseTagNode
impl Send for HTMLCloseTagNode
impl Sync for HTMLCloseTagNode
impl Unpin for HTMLCloseTagNode
impl UnwindSafe for HTMLCloseTagNode
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