pub struct FindKeysRange { /* private fields */ }
Expand description
A version of find keys base on range.
last_key
- Index of the last key relative to the result of the begin search step. Can be negative, in which case it’s not relative. -1 indicates the last argument, -2 one before the last and so on.steps
- How many arguments should we skip after finding a key, in order to find the next one.limit
- Iflastkey
is -1, we uselimit
to stop the search by a factor. 0 and 1 mean no limit. 2 means 1/2 of the remaining args, 3 means 1/3, and so on.
Auto Trait Implementations§
impl Freeze for FindKeysRange
impl RefUnwindSafe for FindKeysRange
impl Send for FindKeysRange
impl Sync for FindKeysRange
impl Unpin for FindKeysRange
impl UnwindSafe for FindKeysRange
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