pub struct Column {
pub name: String,
pub ty: String,
pub null: bool,
pub default: Option<Val>,
pub on_update: Option<Val>,
pub comment: Option<String>,
pub origin: Origin,
pub span: Span,
}Fields§
§name: String§ty: String§null: bool§default: Option<Val>§on_update: Option<Val>§comment: Option<String>§origin: Origin§span: SpanTrait Implementations§
Auto Trait Implementations§
impl Freeze for Column
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin for Column
impl UnsafeUnpin for Column
impl UnwindSafe for Column
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