pub struct OutputColumn {
pub name: String,
pub data_type: SqlType,
pub nullable: bool,
}Expand description
An output column from a query.
Fields§
§name: StringColumn name (or alias).
data_type: SqlTypeData type.
nullable: boolWhether the column is nullable.
Trait Implementations§
Source§impl Clone for OutputColumn
impl Clone for OutputColumn
Source§fn clone(&self) -> OutputColumn
fn clone(&self) -> OutputColumn
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for OutputColumn
impl RefUnwindSafe for OutputColumn
impl Send for OutputColumn
impl Sync for OutputColumn
impl Unpin for OutputColumn
impl UnwindSafe for OutputColumn
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