[][src]Trait odbc_api::handles::CDataMut

pub unsafe trait CDataMut: CData {
    pub fn mut_indicator_ptr(&mut self) -> *mut isize;
pub fn mut_value_ptr(&mut self) -> *mut c_void; }

A type which can be bound mutably to ODBC.

Required methods

pub fn mut_indicator_ptr(&mut self) -> *mut isize[src]

Indicates the length of variable sized types. May be zero for fixed sized types.

pub fn mut_value_ptr(&mut self) -> *mut c_void[src]

Pointer to a value corresponding to the one described by cdata_type.

Loading content...

Implementations on Foreign Types

impl<T> CDataMut for Vec<T> where
    T: FixedSizedCType, 
[src]

Loading content...

Implementors

impl CDataMut for TextColumn[src]

impl<T> CDataMut for Nullable<T> where
    T: FixedSizedCType, 
[src]

Loading content...