pub struct ApplyReport {
pub executed: Vec<Action>,
pub duration_ms: u64,
pub errors: Vec<String>,
pub plan_uuid: Option<Uuid>,
pub rolled_back: bool,
pub rollback_errors: Vec<String>,
}
Expand description
Centralized under crate::types
for cross-layer reuse.
Fields§
§executed: Vec<Action>
List of actions that were executed
duration_ms: u64
Duration of the apply operation in milliseconds
errors: Vec<String>
List of errors encountered during apply
plan_uuid: Option<Uuid>
UUID of the plan that was applied
rolled_back: bool
Whether the operation was rolled back
rollback_errors: Vec<String>
List of errors encountered during rollback
Trait Implementations§
Source§impl Clone for ApplyReport
impl Clone for ApplyReport
Source§fn clone(&self) -> ApplyReport
fn clone(&self) -> ApplyReport
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 ApplyReport
impl Debug for ApplyReport
Source§impl Default for ApplyReport
impl Default for ApplyReport
Source§fn default() -> ApplyReport
fn default() -> ApplyReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ApplyReport
impl RefUnwindSafe for ApplyReport
impl Send for ApplyReport
impl Sync for ApplyReport
impl Unpin for ApplyReport
impl UnwindSafe for ApplyReport
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