pub struct PostgresValidation {
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 PostgresValidation
impl Clone for PostgresValidation
Source§fn clone(&self) -> PostgresValidation
fn clone(&self) -> PostgresValidation
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 PostgresValidation
impl RefUnwindSafe for PostgresValidation
impl Send for PostgresValidation
impl Sync for PostgresValidation
impl Unpin for PostgresValidation
impl UnsafeUnpin for PostgresValidation
impl UnwindSafe for PostgresValidation
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