pub struct RangeSelector {
pub start: usize,
pub end: Option<usize>,
}Expand description
Range selector for limiting results.
Fields§
§start: usizeStart offset from most recent (e.g., 5 = 5th most recent)
end: Option<usize>End offset (None = just start count, Some = range)
Trait Implementations§
Source§impl Clone for RangeSelector
impl Clone for RangeSelector
Source§fn clone(&self) -> RangeSelector
fn clone(&self) -> RangeSelector
Returns a duplicate of the value. Read more
1.0.0 · 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 RangeSelector
impl Debug for RangeSelector
Source§impl PartialEq for RangeSelector
impl PartialEq for RangeSelector
impl Copy for RangeSelector
impl Eq for RangeSelector
impl StructuralPartialEq for RangeSelector
Auto Trait Implementations§
impl Freeze for RangeSelector
impl RefUnwindSafe for RangeSelector
impl Send for RangeSelector
impl Sync for RangeSelector
impl Unpin for RangeSelector
impl UnsafeUnpin for RangeSelector
impl UnwindSafe for RangeSelector
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.