pub enum TableQuery {
AllTablesForSchema(SchemaName, IncludedExcludedTables),
CountRowsForTable(SchemaName, TableName),
FindPrimaryKeyForTable(TableName),
HashQuery(SchemaName, TableName, TablePrimaryKeys, TablePosition, TableOffset),
}
Variants§
AllTablesForSchema(SchemaName, IncludedExcludedTables)
CountRowsForTable(SchemaName, TableName)
FindPrimaryKeyForTable(TableName)
HashQuery(SchemaName, TableName, TablePrimaryKeys, TablePosition, TableOffset)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TableQuery
impl RefUnwindSafe for TableQuery
impl Send for TableQuery
impl Sync for TableQuery
impl Unpin for TableQuery
impl UnwindSafe for TableQuery
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