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: Span
Span of identifier
type_: FullType<'a>
Type of the column
auto_increment: bool
True 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more