[][src]Trait odbc_api::handles::AsHandle

pub unsafe trait AsHandle {
    fn as_handle(&self) -> Handle;
fn handle_type(&self) -> HandleType; }

Provides access to the raw underlying ODBC handle.

Required methods

fn as_handle(&self) -> Handle

The raw underlying ODBC handle used to talk to the ODBC C API. The handle must be valid.

fn handle_type(&self) -> HandleType

The type of the ODBC handle returned by as_handle.

Loading content...

Implementors

impl AsHandle for Environment[src]

impl<'c> AsHandle for Connection<'c>[src]

impl<'c> AsHandle for Description<'c>[src]

impl<'c> AsHandle for Statement<'c>[src]

Loading content...