pub enum TablesDiffItem<'a> {
CreateTable(&'a Table),
DropTable(&'a Table),
AlterTable {
previous: &'a Table,
next: &'a Table,
columns: ColumnsDiff<'a>,
indices: IndicesDiff<'a>,
},
}Variants§
Auto Trait Implementations§
impl<'a> Freeze for TablesDiffItem<'a>
impl<'a> RefUnwindSafe for TablesDiffItem<'a>
impl<'a> Send for TablesDiffItem<'a>
impl<'a> Sync for TablesDiffItem<'a>
impl<'a> Unpin for TablesDiffItem<'a>
impl<'a> UnwindSafe for TablesDiffItem<'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