#[non_exhaustive]pub enum RepairPhase {
Retry(Box<RetryPhase>),
Rollback(Box<RollbackAttempt>),
}Expand description
The RepairPhase type and the information for that type.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Retry(Box<RetryPhase>)
Output only. Records of the retry attempts for retry repair mode.
Rollback(Box<RollbackAttempt>)
Output only. Rollback attempt for rollback repair mode .
Trait Implementations§
Source§impl Clone for RepairPhase
impl Clone for RepairPhase
Source§fn clone(&self) -> RepairPhase
fn clone(&self) -> RepairPhase
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 RepairPhase
impl Debug for RepairPhase
Source§impl PartialEq for RepairPhase
impl PartialEq for RepairPhase
impl StructuralPartialEq for RepairPhase
Auto Trait Implementations§
impl Freeze for RepairPhase
impl RefUnwindSafe for RepairPhase
impl Send for RepairPhase
impl Sync for RepairPhase
impl Unpin for RepairPhase
impl UnwindSafe for RepairPhase
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