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(NullableSliceMut<'a, Date>),
    NullableTime(NullableSliceMut<'a, Time>),
    NullableTimestamp(NullableSliceMut<'a, Timestamp>),
    NullableF64(NullableSliceMut<'a, f64>),
    NullableF32(NullableSliceMut<'a, f32>),
    NullableI8(NullableSliceMut<'a, i8>),
    NullableI16(NullableSliceMut<'a, i16>),
    NullableI32(NullableSliceMut<'a, i32>),
    NullableI64(NullableSliceMut<'a, i64>),
    NullableU8(NullableSliceMut<'a, u8>),
    NullableBit(NullableSliceMut<'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(TextColumnWriter<'a, u8>)Nullable character data in system encoding.
Tuple Fields of Text
0: TextColumnWriter<'a, u8>WText(TextColumnWriter<'a, u16>)Nullable character data encoded in UTF-16.
Tuple Fields of WText
0: TextColumnWriter<'a, u16>Binary(BinColumnWriter<'a>)Tuple Fields of Binary
0: BinColumnWriter<'a>NullableDate(NullableSliceMut<'a, Date>)Tuple Fields of NullableDate
0: NullableSliceMut<'a, Date>NullableTime(NullableSliceMut<'a, Time>)Tuple Fields of NullableTime
0: NullableSliceMut<'a, Time>NullableTimestamp(NullableSliceMut<'a, Timestamp>)Tuple Fields of NullableTimestamp
0: NullableSliceMut<'a, Timestamp>NullableF64(NullableSliceMut<'a, f64>)Tuple Fields of NullableF64
0: NullableSliceMut<'a, f64>NullableF32(NullableSliceMut<'a, f32>)Tuple Fields of NullableF32
0: NullableSliceMut<'a, f32>NullableI8(NullableSliceMut<'a, i8>)Tuple Fields of NullableI8
0: NullableSliceMut<'a, i8>NullableI16(NullableSliceMut<'a, i16>)Tuple Fields of NullableI16
0: NullableSliceMut<'a, i16>NullableI32(NullableSliceMut<'a, i32>)Tuple Fields of NullableI32
0: NullableSliceMut<'a, i32>NullableI64(NullableSliceMut<'a, i64>)Tuple Fields of NullableI64
0: NullableSliceMut<'a, i64>NullableU8(NullableSliceMut<'a, u8>)Tuple Fields of NullableU8
0: NullableSliceMut<'a, u8>NullableBit(NullableSliceMut<'a, Bit>)Tuple Fields of NullableBit
0: NullableSliceMut<'a, Bit>