pub struct RawColumn {
    pub name: String,
    pub sql_type: String,
    pub null: bool,
    pub primary_key: bool,
}Fields§
§name: String§sql_type: String§null: bool§primary_key: boolTrait Implementations§
impl StructuralPartialEq for RawColumn
Auto Trait Implementations§
impl Freeze for RawColumn
impl RefUnwindSafe for RawColumn
impl Send for RawColumn
impl Sync for RawColumn
impl Unpin for RawColumn
impl UnwindSafe for RawColumn
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