Enum odbc_api::buffers::AnyColumnViewMut[][src]

pub enum AnyColumnViewMut<'a> {
Show 25 variants Text(TextColumnWriter<'a, u8>), WText(TextColumnWriter<'a, u16>), Binary(BinColumnWriter<'a>), Date(&'a mut [Date]), Time(&'a mut [Time]), Timestamp(&'a mut [Timestamp]), F64(&'a mut [f64]), F32(&'a mut [f32]), I8(&'a mut [i8]), I16(&'a mut [i16]), I32(&'a mut [i32]), I64(&'a mut [i64]), U8(&'a mut [u8]), Bit(&'a mut [Bit]), NullableDate(OptWriter<'a, Date>), NullableTime(OptWriter<'a, Time>), NullableTimestamp(OptWriter<'a, Timestamp>), NullableF64(OptWriter<'a, f64>), NullableF32(OptWriter<'a, f32>), NullableI8(OptWriter<'a, i8>), NullableI16(OptWriter<'a, i16>), NullableI32(OptWriter<'a, i32>), NullableI64(OptWriter<'a, i64>), NullableU8(OptWriter<'a, u8>), NullableBit(OptWriter<'a, Bit>),
}
Expand description

A mutable borrowed view on the valid rows in a column of a crate::buffers::ColumnarRowSet.

For columns of fixed size types, which are guaranteed to not contain null, a direct access to the slice is offered. Buffers over nullable columns can be accessed via an iterator over options.

Variants

Text

Nullable character data in system encoding.

Tuple Fields of Text

0: TextColumnWriter<'a, u8>
WText

Nullable character data encoded in UTF-16.

Tuple Fields of WText

0: TextColumnWriter<'a, u16>
Binary

Tuple Fields of Binary

0: BinColumnWriter<'a>
Date

Tuple Fields of Date

0: &'a mut [Date]
Time

Tuple Fields of Time

0: &'a mut [Time]
Timestamp

Tuple Fields of Timestamp

0: &'a mut [Timestamp]
F64

Tuple Fields of F64

0: &'a mut [f64]
F32

Tuple Fields of F32

0: &'a mut [f32]
I8

Tuple Fields of I8

0: &'a mut [i8]
I16

Tuple Fields of I16

0: &'a mut [i16]
I32

Tuple Fields of I32

0: &'a mut [i32]
I64

Tuple Fields of I64

0: &'a mut [i64]
U8

Tuple Fields of U8

0: &'a mut [u8]
Bit

Tuple Fields of Bit

0: &'a mut [Bit]
NullableDate

Tuple Fields of NullableDate

0: OptWriter<'a, Date>
NullableTime

Tuple Fields of NullableTime

0: OptWriter<'a, Time>
NullableTimestamp

Tuple Fields of NullableTimestamp

0: OptWriter<'a, Timestamp>
NullableF64

Tuple Fields of NullableF64

0: OptWriter<'a, f64>
NullableF32

Tuple Fields of NullableF32

0: OptWriter<'a, f32>
NullableI8

Tuple Fields of NullableI8

0: OptWriter<'a, i8>
NullableI16

Tuple Fields of NullableI16

0: OptWriter<'a, i16>
NullableI32

Tuple Fields of NullableI32

0: OptWriter<'a, i32>
NullableI64

Tuple Fields of NullableI64

0: OptWriter<'a, i64>
NullableU8

Tuple Fields of NullableU8

0: OptWriter<'a, u8>
NullableBit

Tuple Fields of NullableBit

0: OptWriter<'a, Bit>

Trait Implementations

Formats the value using the given formatter. Read more

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.