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

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

Provides access to the raw underlying ODBC handle.

Required methods

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

The type of the ODBC handle returned by as_handle.

Implementors