[][src]Struct odbc::Cursor

pub struct Cursor<'a, 'b: 'a, 'c: 'a, S: 'a> { /* fields omitted */ }

Used to retrieve data from the fields of a query result

Methods

impl<'a, 'b, 'c, S> Cursor<'a, 'b, 'c, S>[src]

pub fn get_data<'d, T>(&'d mut self, col_or_param_num: u16) -> Result<Option<T>> where
    T: Output<'d>, 
[src]

Retrieves data for a single column in the result set

Auto Trait Implementations

impl<'a, 'b, 'c, S> !Send for Cursor<'a, 'b, 'c, S>

impl<'a, 'b, 'c, S> !Sync for Cursor<'a, 'b, 'c, S>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.