Struct sql_type::SelectTypeColumn
source · pub struct SelectTypeColumn<'a> {
pub name: Option<&'a str>,
pub type_: FullType<'a>,
pub span: Span,
}
Expand description
A column in select
Fields§
§name: Option<&'a str>
The name of the column if one is specified or can be computed
type_: FullType<'a>
The type of the data
span: Span
A span of the expression yielding the column
Trait Implementations§
source§impl<'a> Clone for SelectTypeColumn<'a>
impl<'a> Clone for SelectTypeColumn<'a>
source§fn clone(&self) -> SelectTypeColumn<'a>
fn clone(&self) -> SelectTypeColumn<'a>
Returns a copy 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 more