pub struct QuexColumn {
pub name: String,
pub nullable: bool,
pub kind: ColumnType,
}Expand description
Metadata for one result column.
Fields§
§name: StringColumn name reported by the driver.
nullable: boolWhether the driver reported this column as nullable.
kind: ColumnTypeDriver-specific type metadata.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Column
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin for Column
impl UnsafeUnpin for Column
impl UnwindSafe for Column
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more