[][src]Enum odbc::ResultSetState

pub enum ResultSetState<'a, 'b, S, AC: AutocommitMode> {
    Data(Statement<'a, 'b, S, HasResult, AC>),
    NoData(Statement<'a, 'b, S, NoResult, AC>),
}

Holds a Statement after execution of a query.Allocated

A executed statement may be in one of two states. Either the statement has yielded a result set or not. Keep in mind that some ODBC drivers just yield empty result sets on e.g. INSERT Statements

Variants

Data(Statement<'a, 'b, S, HasResult, AC>)
NoData(Statement<'a, 'b, S, NoResult, AC>)

Auto Trait Implementations

impl<'a, 'b, S, AC> !Send for ResultSetState<'a, 'b, S, AC>

impl<'a, 'b, S, AC> !Sync for ResultSetState<'a, 'b, S, AC>

impl<'a, 'b, S, AC> Unpin for ResultSetState<'a, 'b, S, AC> where
    AC: Unpin,
    S: Unpin

impl<'a, 'b, S, AC> UnwindSafe for ResultSetState<'a, 'b, S, AC> where
    AC: UnwindSafe,
    S: UnwindSafe

impl<'a, 'b, S, AC> RefUnwindSafe for ResultSetState<'a, 'b, S, AC> where
    AC: RefUnwindSafe,
    S: RefUnwindSafe

Blanket Implementations

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

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

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.

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

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

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