pub struct Column {
pub name: String,
pub data_type: DataTypeNode,
}
Expand description
A definition of a column in the result set,
taken out of the RowBinaryWithNamesAndTypes
header.
Fields§
§name: String
The name of the column.
data_type: DataTypeNode
The data type of the column.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Column
Auto Trait Implementations§
impl Freeze for Column
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin 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