pub struct SelectTypeColumn<'a> {
pub name: Option<Identifier<'a>>,
pub type_: FullType<'a>,
pub span: Span,
}
Expand description
A column in select
Fields§
§name: Option<Identifier<'a>>
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 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 moreSource§impl<'a> Debug for SelectTypeColumn<'a>
impl<'a> Debug for SelectTypeColumn<'a>
Auto Trait Implementations§
impl<'a> Freeze for SelectTypeColumn<'a>
impl<'a> RefUnwindSafe for SelectTypeColumn<'a>
impl<'a> Send for SelectTypeColumn<'a>
impl<'a> Sync for SelectTypeColumn<'a>
impl<'a> Unpin for SelectTypeColumn<'a>
impl<'a> UnwindSafe for SelectTypeColumn<'a>
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