pub enum ConstantRangeExpression {
    ConstantExpression(Box<ConstantExpression>),
    ConstantPartSelectRange(Box<ConstantPartSelectRange>),
}Variants§
ConstantExpression(Box<ConstantExpression>)
ConstantPartSelectRange(Box<ConstantPartSelectRange>)
Trait Implementations§
source§impl Clone for ConstantRangeExpression
 
impl Clone for ConstantRangeExpression
source§fn clone(&self) -> ConstantRangeExpression
 
fn clone(&self) -> ConstantRangeExpression
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 ConstantRangeExpression
 
impl Debug for ConstantRangeExpression
source§impl<'a> From<&'a ConstantRangeExpression> for RefNode<'a>
 
impl<'a> From<&'a ConstantRangeExpression> for RefNode<'a>
source§fn from(x: &'a ConstantRangeExpression) -> RefNode<'a>
 
fn from(x: &'a ConstantRangeExpression) -> RefNode<'a>
Converts to this type from the input type.
source§impl<'a> From<&'a ConstantRangeExpression> for RefNodes<'a>
 
impl<'a> From<&'a ConstantRangeExpression> for RefNodes<'a>
source§fn from(x: &'a ConstantRangeExpression) -> RefNodes<'a>
 
fn from(x: &'a ConstantRangeExpression) -> RefNodes<'a>
Converts to this type from the input type.
source§impl From<ConstantRangeExpression> for AnyNode
 
impl From<ConstantRangeExpression> for AnyNode
source§fn from(x: ConstantRangeExpression) -> AnyNode
 
fn from(x: ConstantRangeExpression) -> AnyNode
Converts to this type from the input type.
source§impl<'a> IntoIterator for &'a ConstantRangeExpression
 
impl<'a> IntoIterator for &'a ConstantRangeExpression
source§impl PartialEq for ConstantRangeExpression
 
impl PartialEq for ConstantRangeExpression
source§fn eq(&self, other: &ConstantRangeExpression) -> bool
 
fn eq(&self, other: &ConstantRangeExpression) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl<'a> TryFrom<&'a ConstantRangeExpression> for Locate
 
impl<'a> TryFrom<&'a ConstantRangeExpression> for Locate
source§impl TryFrom<AnyNode> for ConstantRangeExpression
 
impl TryFrom<AnyNode> for ConstantRangeExpression
source§impl TryFrom<ConstantRangeExpression> for Locate
 
impl TryFrom<ConstantRangeExpression> for Locate
impl StructuralPartialEq for ConstantRangeExpression
Auto Trait Implementations§
impl RefUnwindSafe for ConstantRangeExpression
impl Send for ConstantRangeExpression
impl Sync for ConstantRangeExpression
impl Unpin for ConstantRangeExpression
impl UnwindSafe for ConstantRangeExpression
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