#[repr(u16)]pub enum FetchOrientation {
Next = 1,
First = 2,
Last = 3,
Prior = 4,
Absolute = 5,
Relative = 6,
FirstUser = 31,
FirstSystem = 32,
}
Expand description
Codes used for FetchOrientation in SQLFetchScroll
, SQLDataSources
and in SQLDrivers
Variants§
Trait Implementations§
Source§impl Clone for FetchOrientation
impl Clone for FetchOrientation
Source§fn clone(&self) -> FetchOrientation
fn clone(&self) -> FetchOrientation
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 FetchOrientation
impl Debug for FetchOrientation
Source§impl PartialEq for FetchOrientation
impl PartialEq for FetchOrientation
impl Copy for FetchOrientation
impl Eq for FetchOrientation
impl StructuralPartialEq for FetchOrientation
Auto Trait Implementations§
impl Freeze for FetchOrientation
impl RefUnwindSafe for FetchOrientation
impl Send for FetchOrientation
impl Sync for FetchOrientation
impl Unpin for FetchOrientation
impl UnwindSafe for FetchOrientation
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