pub struct FindKeysNum { /* private fields */ }
Expand description
A version of find keys base on some argument representing the number of keys
- keynumidx - Index of the argument containing the number of keys to come, relative to the result of the begin search step.
- firstkey - Index of the fist key relative to the result of the
begin search step. (Usually it’s just after
keynumidx
, in which case it should be set tokeynumidx + 1
.) - keystep - How many arguments should we skip after finding a key, in order to find the next one?
Auto Trait Implementations§
impl Freeze for FindKeysNum
impl RefUnwindSafe for FindKeysNum
impl Send for FindKeysNum
impl Sync for FindKeysNum
impl Unpin for FindKeysNum
impl UnwindSafe for FindKeysNum
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