pub struct Column {
pub name: String,
pub typ: Type,
pub nullable: bool,
pub primary_key: bool,
pub default: Option<String>,
}
Fields§
§name: String
§typ: Type
§nullable: bool
§primary_key: bool
§default: Option<String>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin 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