pub enum TablesItem<'a> {
CreateTable(&'a Table),
DropTable(&'a Table),
AlterTable {
previous: &'a Table,
next: &'a Table,
columns: Columns<'a>,
indices: Indices<'a>,
},
}Expand description
A single change detected between two table lists.
Variants§
CreateTable(&'a Table)
A new table was created.
DropTable(&'a Table)
An existing table was dropped.
AlterTable
A table was modified (name, columns, or indices changed).
Auto Trait Implementations§
impl<'a> Freeze for TablesItem<'a>
impl<'a> RefUnwindSafe for TablesItem<'a>
impl<'a> Send for TablesItem<'a>
impl<'a> Sync for TablesItem<'a>
impl<'a> Unpin for TablesItem<'a>
impl<'a> UnsafeUnpin for TablesItem<'a>
impl<'a> UnwindSafe for TablesItem<'a>
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