Trait odbc::Handle [] [src]

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

Required Methods

Returns a valid handle to the odbc type.

Implementors