[][src]Struct odbc_api::CursorImpl

pub struct CursorImpl<'open_connection, Stmt: BorrowMut<Statement<'open_connection>>> { /* fields omitted */ }

Cursors are used to process and iterate the result sets returned by executing queries.

Trait Implementations

impl<'o, S> Cursor for CursorImpl<'o, S> where
    S: BorrowMut<Statement<'o>>, 
[src]

impl<'o, S> Drop for CursorImpl<'o, S> where
    S: BorrowMut<Statement<'o>>, 
[src]

Auto Trait Implementations

impl<'open_connection, Stmt> RefUnwindSafe for CursorImpl<'open_connection, Stmt> where
    Stmt: RefUnwindSafe

impl<'open_connection, Stmt> !Send for CursorImpl<'open_connection, Stmt>

impl<'open_connection, Stmt> !Sync for CursorImpl<'open_connection, Stmt>

impl<'open_connection, Stmt> Unpin for CursorImpl<'open_connection, Stmt> where
    Stmt: Unpin

impl<'open_connection, Stmt> UnwindSafe for CursorImpl<'open_connection, Stmt> where
    Stmt: UnwindSafe

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.