pub struct MigrationHistoryEntry {
pub migration_id: String,
pub product_version: String,
}Expand description
Represents a record in the migration history table.
Table name: __ef_migrations_history
Corresponds to EFCore’s __EFMigrationsHistory.
Fields§
§migration_id: String§product_version: StringTrait Implementations§
Source§impl Clone for MigrationHistoryEntry
impl Clone for MigrationHistoryEntry
Source§fn clone(&self) -> MigrationHistoryEntry
fn clone(&self) -> MigrationHistoryEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MigrationHistoryEntry
impl RefUnwindSafe for MigrationHistoryEntry
impl Send for MigrationHistoryEntry
impl Sync for MigrationHistoryEntry
impl Unpin for MigrationHistoryEntry
impl UnsafeUnpin for MigrationHistoryEntry
impl UnwindSafe for MigrationHistoryEntry
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