pub enum DatabaseMigrationState {
Undefined,
Initial,
FullBackupUploadStart,
LogShippingStart,
UploadLogFilesStart,
CutoverStart,
PostCutoverComplete,
Completed,
Cancelled,
Failed,
UnknownValue(String),
}
Expand description
Database level migration state.
Variants§
Undefined
Initial
FullBackupUploadStart
LogShippingStart
UploadLogFilesStart
CutoverStart
PostCutoverComplete
Completed
Cancelled
Failed
UnknownValue(String)
Implementations§
Source§impl DatabaseMigrationState
impl DatabaseMigrationState
pub fn serialize<__S>(
__self: &DatabaseMigrationState,
__serializer: __S,
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
Source§impl<'de> DatabaseMigrationState
impl<'de> DatabaseMigrationState
pub fn deserialize<__D>(
__deserializer: __D,
) -> Result<DatabaseMigrationState, __D::Error>where
__D: Deserializer<'de>,
Trait Implementations§
Source§impl Clone for DatabaseMigrationState
impl Clone for DatabaseMigrationState
Source§fn clone(&self) -> DatabaseMigrationState
fn clone(&self) -> DatabaseMigrationState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DatabaseMigrationState
impl Debug for DatabaseMigrationState
Source§impl<'de> Deserialize<'de> for DatabaseMigrationState
impl<'de> Deserialize<'de> for DatabaseMigrationState
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for DatabaseMigrationState
impl FromStr for DatabaseMigrationState
Source§impl PartialEq for DatabaseMigrationState
impl PartialEq for DatabaseMigrationState
Source§impl Serialize for DatabaseMigrationState
impl Serialize for DatabaseMigrationState
impl StructuralPartialEq for DatabaseMigrationState
Auto Trait Implementations§
impl Freeze for DatabaseMigrationState
impl RefUnwindSafe for DatabaseMigrationState
impl Send for DatabaseMigrationState
impl Sync for DatabaseMigrationState
impl Unpin for DatabaseMigrationState
impl UnwindSafe for DatabaseMigrationState
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