Struct odbc_api::handles::OutputStringBuffer[][src]

pub struct OutputStringBuffer { /* fields omitted */ }
Expand description

We use this as an output buffer for strings. Allows for detecting truncation.

Implementations

Creates a new instance of an output string buffer which can hold strings up to a size of max_str_len characters.

Ptr to the internal buffer. Used by ODBC API calls to fill the buffer.

Length of the internal buffer in characters excluding the terminating zero.

Mutable pointer to actual output string length. Used by ODBC API calls to report truncation.

Interpret buffer as UTF16 string. Panics if no terminating zero present.

Call this method to extract string from buffer after ODBC has filled it.

True if the buffer had not been large enough to hold the string.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.