pub enum SyncTableMigrationState {
BeforeLoad,
FullLoad,
Completed,
Canceled,
Error,
Failed,
UnknownValue(String),
}
Expand description
Enum of the different state of table level online migration.
Variants§
Implementations§
Source§impl SyncTableMigrationState
impl SyncTableMigrationState
pub fn serialize<__S>(
__self: &SyncTableMigrationState,
__serializer: __S,
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
Source§impl<'de> SyncTableMigrationState
impl<'de> SyncTableMigrationState
pub fn deserialize<__D>(
__deserializer: __D,
) -> Result<SyncTableMigrationState, __D::Error>where
__D: Deserializer<'de>,
Trait Implementations§
Source§impl Clone for SyncTableMigrationState
impl Clone for SyncTableMigrationState
Source§fn clone(&self) -> SyncTableMigrationState
fn clone(&self) -> SyncTableMigrationState
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 SyncTableMigrationState
impl Debug for SyncTableMigrationState
Source§impl<'de> Deserialize<'de> for SyncTableMigrationState
impl<'de> Deserialize<'de> for SyncTableMigrationState
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 SyncTableMigrationState
impl FromStr for SyncTableMigrationState
Source§impl PartialEq for SyncTableMigrationState
impl PartialEq for SyncTableMigrationState
Source§impl Serialize for SyncTableMigrationState
impl Serialize for SyncTableMigrationState
impl StructuralPartialEq for SyncTableMigrationState
Auto Trait Implementations§
impl Freeze for SyncTableMigrationState
impl RefUnwindSafe for SyncTableMigrationState
impl Send for SyncTableMigrationState
impl Sync for SyncTableMigrationState
impl Unpin for SyncTableMigrationState
impl UnwindSafe for SyncTableMigrationState
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