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