pub struct ReconcileOutcome {
pub created: bool,
pub plan: ReconcilePlan,
}Expand description
The outcome of a successful TableCatalog::reconcile.
Fields§
§created: boolWhether the table was created (vs evolved or already current).
plan: ReconcilePlanThe plan that was executed (empty steps ⇒ the table was already current).
Trait Implementations§
Source§impl Clone for ReconcileOutcome
impl Clone for ReconcileOutcome
Source§fn clone(&self) -> ReconcileOutcome
fn clone(&self) -> ReconcileOutcome
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 ReconcileOutcome
impl Debug for ReconcileOutcome
Source§impl PartialEq for ReconcileOutcome
impl PartialEq for ReconcileOutcome
impl Eq for ReconcileOutcome
impl StructuralPartialEq for ReconcileOutcome
Auto Trait Implementations§
impl Freeze for ReconcileOutcome
impl RefUnwindSafe for ReconcileOutcome
impl Send for ReconcileOutcome
impl Sync for ReconcileOutcome
impl Unpin for ReconcileOutcome
impl UnwindSafe for ReconcileOutcome
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