pub struct ReconcileOutcome {
pub plans: Vec<ReconcilePlanView>,
pub applied: usize,
}Expand description
The outcome of propagating the global config into installed services.
Fields§
§plans: Vec<ReconcilePlanView>Affected services and their env diffs (the preview, or what was applied).
applied: usizeHow many services were updated and restarted (0 on a dry run).
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 (const: unstable) · 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<'de> Deserialize<'de> for ReconcileOutcome
impl<'de> Deserialize<'de> for ReconcileOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReconcileOutcome
impl RefUnwindSafe for ReconcileOutcome
impl Send for ReconcileOutcome
impl Sync for ReconcileOutcome
impl Unpin for ReconcileOutcome
impl UnsafeUnpin 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