Trait Handle

Source
pub trait Handle {
    type To;

    // Required method
    unsafe fn handle(&self) -> *mut Self::To;
}
Expand description

Reflects the ability of a type to expose a valid handle

Required Associated Types§

Required Methods§

Source

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

Returns a valid handle to the odbc type.

Implementors§

Source§

impl<'a, 'b, S, R, AC: AutocommitMode> Handle for Statement<'a, 'b, S, R, AC>

Source§

impl<'env, AC: AutocommitMode> Handle for Connection<'env, AC>

Source§

impl<V> Handle for Environment<V>