pub enum MigrationDirection {
Up,
Down,
}
Expand description
Direction in which a migration is applied (Up
) or reverted (Down
).
Variants§
Trait Implementations§
Source§impl Debug for MigrationDirection
impl Debug for MigrationDirection
Auto Trait Implementations§
impl Freeze for MigrationDirection
impl RefUnwindSafe for MigrationDirection
impl Send for MigrationDirection
impl Sync for MigrationDirection
impl Unpin for MigrationDirection
impl UnwindSafe for MigrationDirection
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