pub enum AnyBuffer {
Show 25 variants Binary(BinColumn), Text(CharColumn), WText(WCharColumn), Date(Vec<Date>), Time(Vec<Time>), Timestamp(Vec<Timestamp>), F64(Vec<f64>), F32(Vec<f32>), I8(Vec<i8>), I16(Vec<i16>), I32(Vec<i32>), I64(Vec<i64>), U8(Vec<u8>), Bit(Vec<Bit>), NullableDate(ColumnWithIndicator<Date>), NullableTime(ColumnWithIndicator<Time>), NullableTimestamp(ColumnWithIndicator<Timestamp>), NullableF64(ColumnWithIndicator<f64>), NullableF32(ColumnWithIndicator<f32>), NullableI8(ColumnWithIndicator<i8>), NullableI16(ColumnWithIndicator<i16>), NullableI32(ColumnWithIndicator<i32>), NullableI64(ColumnWithIndicator<i64>), NullableU8(ColumnWithIndicator<u8>), NullableBit(ColumnWithIndicator<Bit>),
}
Expand description

Buffer holding a single column of either a result set or paramater

Variants§

§

Binary(BinColumn)

A buffer for holding both nullable and required binary data.

§

Text(CharColumn)

A buffer for holding both nullable and required text data. Uses the system encoding for character data.

§

WText(WCharColumn)

A buffer for holding both nullable and required text data. Uses UTF-16 encoding

§

Date(Vec<Date>)

§

Time(Vec<Time>)

§

Timestamp(Vec<Timestamp>)

§

F64(Vec<f64>)

§

F32(Vec<f32>)

§

I8(Vec<i8>)

§

I16(Vec<i16>)

§

I32(Vec<i32>)

§

I64(Vec<i64>)

§

U8(Vec<u8>)

§

Bit(Vec<Bit>)

§

NullableDate(ColumnWithIndicator<Date>)

§

NullableTime(ColumnWithIndicator<Time>)

§

NullableTimestamp(ColumnWithIndicator<Timestamp>)

§

NullableF64(ColumnWithIndicator<f64>)

§

NullableF32(ColumnWithIndicator<f32>)

§

NullableI8(ColumnWithIndicator<i8>)

§

NullableI16(ColumnWithIndicator<i16>)

§

NullableI32(ColumnWithIndicator<i32>)

§

NullableI64(ColumnWithIndicator<i64>)

§

NullableU8(ColumnWithIndicator<u8>)

§

NullableBit(ColumnWithIndicator<Bit>)

Implementations§

source§

impl AnyBuffer

source

pub fn try_from_desc( max_rows: usize, desc: BufferDesc ) -> Result<Self, TooLargeBufferSize>

Map buffer description to actual buffer.

source

pub fn from_desc(max_rows: usize, desc: BufferDesc) -> Self

Map buffer description to actual buffer.

Trait Implementations§

source§

impl<'a> BoundInputSlice<'a> for AnyBuffer

§

type SliceMut = AnySliceMut<'a>

Intended to allow for modifying buffer contents, while leaving the bound parameter buffers valid.
source§

unsafe fn as_view_mut( &'a mut self, parameter_index: u16, stmt: StatementRef<'a> ) -> Self::SliceMut

Obtain a mutable view on a parameter buffer in order to change the parameter value(s) submitted when executing the statement. Read more
source§

impl CData for AnyBuffer

source§

fn cdata_type(&self) -> CDataType

The identifier of the C data type of the value buffer. When it is retrieving data from the data source with fetch, the driver converts the data to this type. When it sends data to the source, the driver converts the data from this type.
source§

fn indicator_ptr(&self) -> *const isize

Indicates the length of variable sized types. May be zero for fixed sized types. Used to determine the size or existence of input parameters.
source§

fn value_ptr(&self) -> *const c_void

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

fn buffer_length(&self) -> isize

Maximum length of the type in bytes (not characters). It is required to index values in bound buffers, if more than one parameter is bound. Can be set to zero for types not bound as parameter arrays, i.e. CStr.
source§

impl CDataMut for AnyBuffer

source§

fn mut_indicator_ptr(&mut self) -> *mut isize

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

fn mut_value_ptr(&mut self) -> *mut c_void

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

impl ColumnBuffer for AnyBuffer

source§

fn fill_default(&mut self, from: usize, to: usize)

Fills the column with the default representation of values, between from and to index.

§

type View<'a> = AnySlice<'a>

Immutable view on the column data. Used in safe abstractions. User must not be able to access uninitialized or invalid memory of the buffer through this interface.
source§

fn capacity(&self) -> usize

Current capacity of the column
source§

fn view(&self, valid_rows: usize) -> AnySlice<'_>

Num rows may not exceed the actually amount of valid num_rows filled be the ODBC API. The column buffer does not know how many elements were in the last row group, and therefore can not guarantee the accessed element to be valid and in a defined state. It also can not panic on accessing an undefined element.
source§

fn has_truncated_values(&self, num_rows: usize) -> bool

true if any value is truncated in the range [0, num_rows). Read more
source§

impl Debug for AnyBuffer

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl HasDataType for AnyBuffer

source§

fn data_type(&self) -> DataType

The SQL data as which the parameter is bound to ODBC.

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.