pub struct Plan {Show 17 fields
pub table_names_all_from_file: Vec<String>,
pub table_names_all_from_db: Vec<String>,
pub table_names_unique_from_file: Vec<String>,
pub table_names_dup_from_file: Vec<String>,
pub table_names_existing: Vec<String>,
pub table_names_unchanged: Vec<String>,
pub table_statements_changes: Vec<Statement>,
pub table_names_new: Vec<String>,
pub table_statements_new: Vec<Statement>,
pub table_names_dropped: Vec<String>,
pub table_statements_dropped: Vec<Statement>,
pub tables_new: Vec<Statement>,
pub tables_old: Vec<Statement>,
pub sql_statements_for_step_up: Vec<String>,
pub sql_statements_for_step_down: Vec<String>,
pub schema_does_not_exist: bool,
pub schema_name: String,
}Fields§
§table_names_all_from_file: Vec<String>§table_names_all_from_db: Vec<String>§table_names_unique_from_file: Vec<String>§table_names_dup_from_file: Vec<String>§table_names_existing: Vec<String>§table_names_unchanged: Vec<String>§table_statements_changes: Vec<Statement>§table_names_new: Vec<String>§table_statements_new: Vec<Statement>§table_names_dropped: Vec<String>§table_statements_dropped: Vec<Statement>§tables_new: Vec<Statement>§tables_old: Vec<Statement>§sql_statements_for_step_up: Vec<String>§sql_statements_for_step_down: Vec<String>§schema_does_not_exist: bool§schema_name: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnwindSafe for Plan
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more