pub struct KeyRange {
pub start: Option<PlanExpression>,
pub start_inclusive: bool,
pub end: Option<PlanExpression>,
pub end_inclusive: bool,
}Expand description
Key range for index scans.
Fields§
§start: Option<PlanExpression>§start_inclusive: bool§end: Option<PlanExpression>§end_inclusive: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for KeyRange
impl RefUnwindSafe for KeyRange
impl Send for KeyRange
impl Sync for KeyRange
impl Unpin for KeyRange
impl UnsafeUnpin for KeyRange
impl UnwindSafe for KeyRange
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