pub struct Query {
pub lo: usize,
pub hi: usize,
}Expand description
A single query on a half-open interval [lo, hi).
Fields§
§lo: usizeInclusive lower bound of the query range.
hi: usizeExclusive upper bound of the query range.
Trait Implementations§
impl Copy for Query
impl Eq for Query
impl StructuralPartialEq for Query
Auto Trait Implementations§
impl Freeze for Query
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnsafeUnpin for Query
impl UnwindSafe for Query
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