pub struct NamespaceNode {
pub name: CompactString,
pub body: Box<Node>,
pub is_bracket: bool,
}Fields§
§name: CompactString§body: Box<Node>§is_bracket: boolImplementations§
Trait Implementations§
Source§impl Clone for NamespaceNode
impl Clone for NamespaceNode
Source§fn clone(&self) -> NamespaceNode
fn clone(&self) -> NamespaceNode
Returns a copy 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 NamespaceNode
impl Debug for NamespaceNode
Source§impl<'de> Deserialize<'de> for NamespaceNode
impl<'de> Deserialize<'de> for NamespaceNode
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 NamespaceNode
impl PartialEq for NamespaceNode
Source§impl Serialize for NamespaceNode
impl Serialize for NamespaceNode
impl StructuralPartialEq for NamespaceNode
Auto Trait Implementations§
impl Freeze for NamespaceNode
impl RefUnwindSafe for NamespaceNode
impl Send for NamespaceNode
impl Sync for NamespaceNode
impl Unpin for NamespaceNode
impl UnwindSafe for NamespaceNode
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