pub enum GenericStatement {
Nothing,
NumberBound {
symbol: Ordering,
number: BigDecimal,
inclusive: bool,
},
NumberRange {
min: BigDecimal,
min_inclusive: bool,
max: BigDecimal,
max_inclusive: bool,
},
Arguments {
arguments: Vec<ValueStatement>,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for GenericStatement
impl Clone for GenericStatement
Source§fn clone(&self) -> GenericStatement
fn clone(&self) -> GenericStatement
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 GenericStatement
impl Debug for GenericStatement
Source§impl Default for GenericStatement
impl Default for GenericStatement
Source§impl PartialEq for GenericStatement
impl PartialEq for GenericStatement
impl StructuralPartialEq for GenericStatement
Auto Trait Implementations§
impl Freeze for GenericStatement
impl RefUnwindSafe for GenericStatement
impl Send for GenericStatement
impl Sync for GenericStatement
impl Unpin for GenericStatement
impl UnwindSafe for GenericStatement
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