pub struct DbTable {
pub name: String,
pub columns: Vec<DbColumn>,
}Expand description
Table information from database introspection.
Fields§
§name: String§columns: Vec<DbColumn>Trait Implementations§
Auto Trait Implementations§
impl Freeze for DbTable
impl RefUnwindSafe for DbTable
impl Send for DbTable
impl Sync for DbTable
impl Unpin for DbTable
impl UnsafeUnpin for DbTable
impl UnwindSafe for DbTable
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