[][src]Trait odbc::Handle

pub trait Handle {
    type To;
    unsafe fn handle(&self) -> *mut Self::To;
}

Reflects the ability of a type to expose a valid handle

Associated Types

type To

Loading content...

Required methods

unsafe fn handle(&self) -> *mut Self::To

Returns a valid handle to the odbc type.

Loading content...

Implementors

impl<'a, 'b, S, R> Handle for Statement<'a, 'b, S, R>[src]

type To = Stmt

impl<'env> Handle for Connection<'env>[src]

type To = Dbc

impl<V> Handle for Environment<V>[src]

type To = Env

Loading content...