Struct mtml_parser::ast::BlockTagNode
source · 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: usize
Trait 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<BlockTagNode> for BlockTagNode
impl PartialEq<BlockTagNode> for BlockTagNode
source§fn eq(&self, other: &BlockTagNode) -> bool
fn eq(&self, other: &BlockTagNode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.