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