#[non_exhaustive]pub struct MigrationStateEvent {
pub state: MigrationState,
/* private fields */
}Expand description
An event signifying a change in state of a migration from Cloud Datastore to Cloud Firestore in Datastore mode.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.state: MigrationStateThe new state of the migration.
Implementations§
Trait Implementations§
Source§impl Clone for MigrationStateEvent
impl Clone for MigrationStateEvent
Source§fn clone(&self) -> MigrationStateEvent
fn clone(&self) -> MigrationStateEvent
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 MigrationStateEvent
impl Debug for MigrationStateEvent
Source§impl Default for MigrationStateEvent
impl Default for MigrationStateEvent
Source§fn default() -> MigrationStateEvent
fn default() -> MigrationStateEvent
Returns the “default value” for a type. Read more
Source§impl Message for MigrationStateEvent
impl Message for MigrationStateEvent
Source§impl PartialEq for MigrationStateEvent
impl PartialEq for MigrationStateEvent
impl StructuralPartialEq for MigrationStateEvent
Auto Trait Implementations§
impl Freeze for MigrationStateEvent
impl RefUnwindSafe for MigrationStateEvent
impl Send for MigrationStateEvent
impl Sync for MigrationStateEvent
impl Unpin for MigrationStateEvent
impl UnwindSafe for MigrationStateEvent
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