pub struct SqlTableSchema {
pub name: String,
pub columns: Vec<SqlColumnSchema>,
}Fields§
§name: String§columns: Vec<SqlColumnSchema>Trait Implementations§
Source§impl Clone for SqlTableSchema
impl Clone for SqlTableSchema
Source§fn clone(&self) -> SqlTableSchema
fn clone(&self) -> SqlTableSchema
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SqlTableSchema
impl Debug for SqlTableSchema
Auto Trait Implementations§
impl Freeze for SqlTableSchema
impl RefUnwindSafe for SqlTableSchema
impl Send for SqlTableSchema
impl Sync for SqlTableSchema
impl Unpin for SqlTableSchema
impl UnsafeUnpin for SqlTableSchema
impl UnwindSafe for SqlTableSchema
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