pub enum CursorState {
NotInitialized,
Initialized,
Closed,
}Expand description
Cursor state.
Variants§
NotInitialized
Cursor has not been positioned yet.
Initialized
Cursor is positioned on a record.
Closed
Cursor has been closed.
Trait Implementations§
Source§impl Clone for CursorState
impl Clone for CursorState
Source§fn clone(&self) -> CursorState
fn clone(&self) -> CursorState
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 CursorState
Source§impl Debug for CursorState
impl Debug for CursorState
impl Eq for CursorState
Source§impl PartialEq for CursorState
impl PartialEq for CursorState
Source§fn eq(&self, other: &CursorState) -> bool
fn eq(&self, other: &CursorState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CursorState
Auto Trait Implementations§
impl Freeze for CursorState
impl RefUnwindSafe for CursorState
impl Send for CursorState
impl Sync for CursorState
impl Unpin for CursorState
impl UnsafeUnpin for CursorState
impl UnwindSafe for CursorState
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.