pub enum HandlerScanDirection {
First,
Next,
}Expand description
The traversal direction of an indexless HANDLER … READ { FIRST | NEXT } scan
(HandlerReadSelector::Scan) — the narrow handler_scan_function set. A surface tag
(no meta), riding the parent’s span like KillTarget.
Variants§
First
FIRST — the first row in storage order.
Next
NEXT — the next row after the handler’s current position.
Trait Implementations§
Source§impl Clone for HandlerScanDirection
impl Clone for HandlerScanDirection
Source§fn clone(&self) -> HandlerScanDirection
fn clone(&self) -> HandlerScanDirection
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 moreimpl Copy for HandlerScanDirection
Source§impl Debug for HandlerScanDirection
impl Debug for HandlerScanDirection
Source§impl<'de> Deserialize<'de> for HandlerScanDirection
impl<'de> Deserialize<'de> for HandlerScanDirection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for HandlerScanDirection
Source§impl Hash for HandlerScanDirection
impl Hash for HandlerScanDirection
Source§impl PartialEq for HandlerScanDirection
impl PartialEq for HandlerScanDirection
Source§impl Serialize for HandlerScanDirection
impl Serialize for HandlerScanDirection
impl StructuralPartialEq for HandlerScanDirection
Auto Trait Implementations§
impl Freeze for HandlerScanDirection
impl RefUnwindSafe for HandlerScanDirection
impl Send for HandlerScanDirection
impl Sync for HandlerScanDirection
impl Unpin for HandlerScanDirection
impl UnsafeUnpin for HandlerScanDirection
impl UnwindSafe for HandlerScanDirection
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