pub struct MysqlValidation {
pub state: InstallationState,
pub current_version: u32,
pub latest_version: u32,
pub applied: Vec<AppliedMigration>,
pub messages: Vec<String>,
}Fields§
§state: InstallationState§current_version: u32§latest_version: u32§applied: Vec<AppliedMigration>§messages: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for MysqlValidation
impl Clone for MysqlValidation
Source§fn clone(&self) -> MysqlValidation
fn clone(&self) -> MysqlValidation
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 MysqlValidation
impl RefUnwindSafe for MysqlValidation
impl Send for MysqlValidation
impl Sync for MysqlValidation
impl Unpin for MysqlValidation
impl UnsafeUnpin for MysqlValidation
impl UnwindSafe for MysqlValidation
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