pub enum ReconcileProgressEvent {
Installing {
name: String,
action: String,
index: usize,
total: usize,
},
Installed {
name: String,
already_materialized: bool,
},
Failed {
name: String,
error: String,
},
}Expand description
Progress event for reconciliation.
Variants§
Auto Trait Implementations§
impl Freeze for ReconcileProgressEvent
impl RefUnwindSafe for ReconcileProgressEvent
impl Send for ReconcileProgressEvent
impl Sync for ReconcileProgressEvent
impl Unpin for ReconcileProgressEvent
impl UnsafeUnpin for ReconcileProgressEvent
impl UnwindSafe for ReconcileProgressEvent
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