pub struct ExistingMigrationInfo {
pub migration_name: String,
pub namespace: String,
pub last_status: MigrationHistoryStatus,
pub last_activity: String,
pub checksum: String,
}Expand description
Information about an existing migration entry
Fields§
§migration_name: String§namespace: String§last_status: MigrationHistoryStatus§last_activity: String§checksum: StringTrait Implementations§
Source§impl Clone for ExistingMigrationInfo
impl Clone for ExistingMigrationInfo
Source§fn clone(&self) -> ExistingMigrationInfo
fn clone(&self) -> ExistingMigrationInfo
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 moreAuto Trait Implementations§
impl Freeze for ExistingMigrationInfo
impl RefUnwindSafe for ExistingMigrationInfo
impl Send for ExistingMigrationInfo
impl Sync for ExistingMigrationInfo
impl Unpin for ExistingMigrationInfo
impl UnsafeUnpin for ExistingMigrationInfo
impl UnwindSafe for ExistingMigrationInfo
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