pub enum BoundaryKind {
Inclusive,
Exclusive,
}Expand description
How to interpret the value of a boundary.
Variants§
Inclusive
Use inclusive comparisons such as >= and <=, the value listed in the term should match the result set.
Exclusive
Use exclusive comparisons such as > and <, the value listed in the term should not match the result set.
Trait Implementations§
Source§impl Clone for BoundaryKind
impl Clone for BoundaryKind
Source§fn clone(&self) -> BoundaryKind
fn clone(&self) -> BoundaryKind
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 BoundaryKind
impl Debug for BoundaryKind
Source§impl PartialEq for BoundaryKind
impl PartialEq for BoundaryKind
impl Eq for BoundaryKind
impl StructuralPartialEq for BoundaryKind
Auto Trait Implementations§
impl Freeze for BoundaryKind
impl RefUnwindSafe for BoundaryKind
impl Send for BoundaryKind
impl Sync for BoundaryKind
impl Unpin for BoundaryKind
impl UnsafeUnpin for BoundaryKind
impl UnwindSafe for BoundaryKind
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