pub enum RangeBound<'a, K> {
Unbounded,
Inclusive(&'a K),
Exclusive(&'a K),
}Expand description
One end of a range query.
Variants§
Auto Trait Implementations§
impl<'a, K> Freeze for RangeBound<'a, K>
impl<'a, K> RefUnwindSafe for RangeBound<'a, K>where
K: RefUnwindSafe,
impl<'a, K> Send for RangeBound<'a, K>where
K: Sync,
impl<'a, K> Sync for RangeBound<'a, K>where
K: Sync,
impl<'a, K> Unpin for RangeBound<'a, K>
impl<'a, K> UnsafeUnpin for RangeBound<'a, K>
impl<'a, K> UnwindSafe for RangeBound<'a, K>where
K: RefUnwindSafe,
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