pub struct SQLTable {
pub name: String,
pub columns: Vec<SQLColumn>,
}Expand description
A table definition (schema).
Fields§
§name: String§columns: Vec<SQLColumn>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SQLTable
impl RefUnwindSafe for SQLTable
impl Send for SQLTable
impl Sync for SQLTable
impl Unpin for SQLTable
impl UnsafeUnpin for SQLTable
impl UnwindSafe for SQLTable
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