pub struct Table {
pub name: &'static str,
pub create: &'static str,
}
Expand description
A table’s name along with its create statement.
Fields§
§name: &'static str
The name of the table as declared in the create statement.
create: &'static str
The table’s create statement.
Trait Implementations§
Source§impl Ord for Table
impl Ord for Table
Source§impl PartialOrd for Table
impl PartialOrd for Table
impl Copy for Table
impl Eq for Table
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnwindSafe for Table
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