Enum odbc_sys::FetchOrientation
source · #[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
source§fn eq(&self, other: &FetchOrientation) -> bool
fn eq(&self, other: &FetchOrientation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for FetchOrientation
impl Eq for FetchOrientation
impl StructuralEq for FetchOrientation
impl StructuralPartialEq for FetchOrientation
Auto Trait Implementations§
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