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

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

Implementations§

source§

impl OutputStringBuffer

source

pub fn empty() -> Self

Creates an empty string buffer. Useful if you want to e.g. use a prompt to complete the connection string, but are not interessted in the actual completed connection string.

source

pub fn with_buffer_size(max_str_len: usize) -> Self

Creates a new instance of an output string buffer which can hold strings up to a size of max_str_len - 1 characters. `-1 because one place is needed for the terminating zero. To hold a connection string the size should be at least 1024.

source

pub fn mut_buf_ptr(&mut self) -> *mut SqlChar

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

source

pub fn buf_len(&self) -> i16

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

source

pub fn mut_actual_len_ptr(&mut self) -> *mut i16

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

source

pub fn to_utf8(&self) -> String

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

source

pub fn is_truncated(&self) -> bool

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

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.