pub struct RawTextElementNode {
pub name: String,
pub attributes: Vec<AttributeLike>,
pub children: Vec<Node>,
pub span: Option<SourceSpan>,
}Fields§
§name: String§attributes: Vec<AttributeLike>§children: Vec<Node>§span: Option<SourceSpan>Trait Implementations§
Source§impl Clone for RawTextElementNode
impl Clone for RawTextElementNode
Source§fn clone(&self) -> RawTextElementNode
fn clone(&self) -> RawTextElementNode
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 RawTextElementNode
impl Debug for RawTextElementNode
Source§impl PartialEq for RawTextElementNode
impl PartialEq for RawTextElementNode
impl Eq for RawTextElementNode
impl StructuralPartialEq for RawTextElementNode
Auto Trait Implementations§
impl Freeze for RawTextElementNode
impl RefUnwindSafe for RawTextElementNode
impl Send for RawTextElementNode
impl Sync for RawTextElementNode
impl Unpin for RawTextElementNode
impl UnsafeUnpin for RawTextElementNode
impl UnwindSafe for RawTextElementNode
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