#[repr(u8)]pub enum IteratorType {
Eq = 0,
Req = 1,
All = 2,
Lt = 3,
Le = 4,
Ge = 5,
Gt = 6,
BitsAllSet = 7,
BitsAnySet = 8,
BitsAlLNotSet = 9,
Overlaps = 10,
Neighvor = 11,
}
Expand description
Iterator type for select
requests.
For details check Tarantool documantation https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_index/pairs/.
Variants§
Eq = 0
Req = 1
All = 2
Lt = 3
Le = 4
Ge = 5
Gt = 6
BitsAllSet = 7
BitsAnySet = 8
BitsAlLNotSet = 9
Overlaps = 10
Neighvor = 11
Trait Implementations§
Source§impl Clone for IteratorType
impl Clone for IteratorType
Source§fn clone(&self) -> IteratorType
fn clone(&self) -> IteratorType
Returns a copy 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 IteratorType
impl Debug for IteratorType
Source§impl Default for IteratorType
impl Default for IteratorType
impl Copy for IteratorType
Auto Trait Implementations§
impl Freeze for IteratorType
impl RefUnwindSafe for IteratorType
impl Send for IteratorType
impl Sync for IteratorType
impl Unpin for IteratorType
impl UnwindSafe for IteratorType
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