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