pub struct Column<'a> {
pub identifier: &'a str,
pub identifier_span: Span,
pub type_: FullType<'a>,
pub auto_increment: bool,
}Expand description
A column in a schema
Fields§
§identifier: &'a str§identifier_span: SpanSpan of identifier
type_: FullType<'a>Type of the column
auto_increment: boolTrue if the column is auto_increment
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Column<'a>
impl<'a> Send for Column<'a>
impl<'a> Sync for Column<'a>
impl<'a> Unpin for Column<'a>
impl<'a> UnwindSafe for Column<'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