Struct msql_srv::Column [−][src]
pub struct Column { pub table: String, pub column: String, pub coltype: ColumnType, pub colflags: ColumnFlags, }
Expand description
Meta-information abot a single column, used either to describe a prepared statement parameter or an output column.
Fields
table: String
This column’s associated table.
Note that this is technically the table’s alias.
column: String
This column’s name.
Note that this is technically the column’s alias.
coltype: ColumnType
This column’s type>
colflags: ColumnFlags
Any flags associated with this column.
Of particular interest are ColumnFlags::UNSIGNED_FLAG
and ColumnFlags::NOT_NULL_FLAG
.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Column
impl UnwindSafe for Column
Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self
pub fn vzip(self) -> V