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