[][src]Enum postgres_parser::sys::FetchDirection

#[repr(u32)]pub enum FetchDirection {
    FETCH_FORWARD,
    FETCH_BACKWARD,
    FETCH_ABSOLUTE,
    FETCH_RELATIVE,
}

Fetch Statement (also Move)

Variants

FETCH_FORWARD

for these, howMany is how many rows to fetch; FETCH_ALL means ALL

FETCH_BACKWARD

for these, howMany is how many rows to fetch; FETCH_ALL means ALL

FETCH_ABSOLUTE

for these, howMany indicates a position; only one row is fetched

FETCH_RELATIVE

for these, howMany indicates a position; only one row is fetched

Trait Implementations

impl Clone for FetchDirection[src]

impl Copy for FetchDirection[src]

impl Debug for FetchDirection[src]

impl<'de> Deserialize<'de> for FetchDirection[src]

impl Eq for FetchDirection[src]

impl Hash for FetchDirection[src]

impl PartialEq<FetchDirection> for FetchDirection[src]

impl Serialize for FetchDirection[src]

impl StructuralEq for FetchDirection[src]

impl StructuralPartialEq for FetchDirection[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.