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>)

Tuple Fields

Nullable character data in system encoding.

WText(TextColumnWriter<'a, u16>)

Tuple Fields

Nullable character data encoded in UTF-16.

Binary(BinColumnWriter<'a>)

Tuple Fields

Date(&'a mut [Date])

Tuple Fields

Time(&'a mut [Time])

Tuple Fields

Timestamp(&'a mut [Timestamp])

Tuple Fields

F64(&'a mut [f64])

Tuple Fields

F32(&'a mut [f32])

Tuple Fields

I8(&'a mut [i8])

Tuple Fields

I16(&'a mut [i16])

Tuple Fields

I32(&'a mut [i32])

Tuple Fields

I64(&'a mut [i64])

Tuple Fields

U8(&'a mut [u8])

Tuple Fields

Bit(&'a mut [Bit])

Tuple Fields

NullableDate(NullableSliceMut<'a, Date>)

Tuple Fields

NullableTime(NullableSliceMut<'a, Time>)

Tuple Fields

NullableTimestamp(NullableSliceMut<'a, Timestamp>)

Tuple Fields

NullableF64(NullableSliceMut<'a, f64>)

Tuple Fields

NullableF32(NullableSliceMut<'a, f32>)

Tuple Fields

NullableI8(NullableSliceMut<'a, i8>)

Tuple Fields

NullableI16(NullableSliceMut<'a, i16>)

Tuple Fields

NullableI32(NullableSliceMut<'a, i32>)

Tuple Fields

NullableI64(NullableSliceMut<'a, i64>)

Tuple Fields

NullableU8(NullableSliceMut<'a, u8>)

Tuple Fields

NullableBit(NullableSliceMut<'a, Bit>)

Tuple Fields

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.