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 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 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§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 Freeze for ConstantRangeExpression
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