pub enum Reverted {
Nothing,
DownTo(NaiveDateTime),
Completely,
NoBackwardMigrationsFound,
}Expand description
Result of a revert action.
Variants§
Nothing
No migrations have been reverted. The database is completely reverted already.
DownTo(NaiveDateTime)
Reverted the database to the specified migration key (version).
Completely
The database has been reverted completely.
NoBackwardMigrationsFound
No backward migrations found in the migrations folder.
Trait Implementations§
impl Copy for Reverted
impl Eq for Reverted
impl StructuralPartialEq for Reverted
Auto Trait Implementations§
impl Freeze for Reverted
impl RefUnwindSafe for Reverted
impl Send for Reverted
impl Sync for Reverted
impl Unpin for Reverted
impl UnwindSafe for Reverted
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.