pub struct EncodedRowKeyRange {
pub lower_inclusive: Vec<u8>,
pub upper_exclusive: Vec<u8>,
}Expand description
Storage scan bounds encoded from a RowKeyRange.
Fields§
§lower_inclusive: Vec<u8>Inclusive storage lower bound.
upper_exclusive: Vec<u8>Exclusive storage upper bound.
Trait Implementations§
Source§impl Clone for EncodedRowKeyRange
impl Clone for EncodedRowKeyRange
Source§fn clone(&self) -> EncodedRowKeyRange
fn clone(&self) -> EncodedRowKeyRange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EncodedRowKeyRange
impl Debug for EncodedRowKeyRange
impl Eq for EncodedRowKeyRange
Source§impl PartialEq for EncodedRowKeyRange
impl PartialEq for EncodedRowKeyRange
impl StructuralPartialEq for EncodedRowKeyRange
Auto Trait Implementations§
impl Freeze for EncodedRowKeyRange
impl RefUnwindSafe for EncodedRowKeyRange
impl Send for EncodedRowKeyRange
impl Sync for EncodedRowKeyRange
impl Unpin for EncodedRowKeyRange
impl UnsafeUnpin for EncodedRowKeyRange
impl UnwindSafe for EncodedRowKeyRange
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