pub struct BlockTagNode {
    pub name: String,
    pub attributes: Vec<Attribute>,
    pub children: Vec<Node>,
    pub line: u32,
    pub column: usize,
    pub offset: usize,
}Fields§
§name: String§attributes: Vec<Attribute>§children: Vec<Node>§line: u32§column: usize§offset: usizeTrait Implementations§
Source§impl Debug for BlockTagNode
 
impl Debug for BlockTagNode
Source§impl<'de> Deserialize<'de> for BlockTagNode
 
impl<'de> Deserialize<'de> for BlockTagNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BlockTagNode
 
impl PartialEq for BlockTagNode
Source§impl Serialize for BlockTagNode
 
impl Serialize for BlockTagNode
impl Eq for BlockTagNode
impl StructuralPartialEq for BlockTagNode
Auto Trait Implementations§
impl Freeze for BlockTagNode
impl RefUnwindSafe for BlockTagNode
impl Send for BlockTagNode
impl Sync for BlockTagNode
impl Unpin for BlockTagNode
impl UnwindSafe for BlockTagNode
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