pub enum StatementOrNull {
    Statement(Box<Statement>),
    Attribute(Box<StatementOrNullAttribute>),
}Variants§
Trait Implementations§
Source§impl Clone for StatementOrNull
 
impl Clone for StatementOrNull
Source§fn clone(&self) -> StatementOrNull
 
fn clone(&self) -> StatementOrNull
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 StatementOrNull
 
impl Debug for StatementOrNull
Source§impl<'a> From<&'a StatementOrNull> for RefNode<'a>
 
impl<'a> From<&'a StatementOrNull> for RefNode<'a>
Source§fn from(x: &'a StatementOrNull) -> RefNode<'a>
 
fn from(x: &'a StatementOrNull) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a StatementOrNull> for RefNodes<'a>
 
impl<'a> From<&'a StatementOrNull> for RefNodes<'a>
Source§fn from(x: &'a StatementOrNull) -> RefNodes<'a>
 
fn from(x: &'a StatementOrNull) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<StatementOrNull> for AnyNode
 
impl From<StatementOrNull> for AnyNode
Source§fn from(x: StatementOrNull) -> AnyNode
 
fn from(x: StatementOrNull) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a StatementOrNull
 
impl<'a> IntoIterator for &'a StatementOrNull
Source§impl PartialEq for StatementOrNull
 
impl PartialEq for StatementOrNull
Source§impl<'a> TryFrom<&'a StatementOrNull> for Locate
 
impl<'a> TryFrom<&'a StatementOrNull> for Locate
Source§impl TryFrom<AnyNode> for StatementOrNull
 
impl TryFrom<AnyNode> for StatementOrNull
Source§impl TryFrom<StatementOrNull> for Locate
 
impl TryFrom<StatementOrNull> for Locate
impl StructuralPartialEq for StatementOrNull
Auto Trait Implementations§
impl Freeze for StatementOrNull
impl RefUnwindSafe for StatementOrNull
impl Send for StatementOrNull
impl Sync for StatementOrNull
impl Unpin for StatementOrNull
impl UnwindSafe for StatementOrNull
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