pub struct RangeBound {
pub kind: BoundKind,
pub value: BoundExpr,
pub unconverted: bool,
}Expand description
One end of a scan range.
Fields§
§kind: BoundKindWhich comparison the bound enforces.
value: BoundExprThe value to compare against.
unconverted: boolWhether the seek compares value without converting it to the
column’s affinity. See AccessPath::IndexSeek’s unconverted.
Trait Implementations§
Source§impl Clone for RangeBound
impl Clone for RangeBound
Source§impl Debug for RangeBound
impl Debug for RangeBound
Source§impl PartialEq for RangeBound
impl PartialEq for RangeBound
impl StructuralPartialEq for RangeBound
Auto Trait Implementations§
impl !Send for RangeBound
impl !Sync for RangeBound
impl Freeze for RangeBound
impl RefUnwindSafe for RangeBound
impl Unpin for RangeBound
impl UnsafeUnpin for RangeBound
impl UnwindSafe for RangeBound
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