pub struct MigrationRecord {
pub version: u64,
pub name: String,
pub applied_at: u64,
}Expand description
Record of an applied migration
Fields§
§version: u64§name: String§applied_at: u64Trait Implementations§
Source§impl Clone for MigrationRecord
impl Clone for MigrationRecord
Source§fn clone(&self) -> MigrationRecord
fn clone(&self) -> MigrationRecord
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 MigrationRecord
impl Debug for MigrationRecord
Source§impl PartialEq for MigrationRecord
impl PartialEq for MigrationRecord
impl Eq for MigrationRecord
impl StructuralPartialEq for MigrationRecord
Auto Trait Implementations§
impl Freeze for MigrationRecord
impl RefUnwindSafe for MigrationRecord
impl Send for MigrationRecord
impl Sync for MigrationRecord
impl Unpin for MigrationRecord
impl UnwindSafe for MigrationRecord
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