pub struct RecoveryRecord {
pub checkpoint: String,
pub branch: String,
pub created_at: DateTime<Utc>,
pub failures: Vec<RestoreFailure>,
}Expand description
Written next to the checkpoint when resource restores fail during undo, so the failure survives the terminal: what failed, where the logs are, and how to re-run.
Fields§
§checkpoint: String§branch: String§created_at: DateTime<Utc>§failures: Vec<RestoreFailure>Trait Implementations§
Source§impl Clone for RecoveryRecord
impl Clone for RecoveryRecord
Source§fn clone(&self) -> RecoveryRecord
fn clone(&self) -> RecoveryRecord
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 RecoveryRecord
impl Debug for RecoveryRecord
Source§impl<'de> Deserialize<'de> for RecoveryRecord
impl<'de> Deserialize<'de> for RecoveryRecord
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
impl Eq for RecoveryRecord
Source§impl PartialEq for RecoveryRecord
impl PartialEq for RecoveryRecord
Source§impl Serialize for RecoveryRecord
impl Serialize for RecoveryRecord
impl StructuralPartialEq for RecoveryRecord
Auto Trait Implementations§
impl Freeze for RecoveryRecord
impl RefUnwindSafe for RecoveryRecord
impl Send for RecoveryRecord
impl Sync for RecoveryRecord
impl Unpin for RecoveryRecord
impl UnsafeUnpin for RecoveryRecord
impl UnwindSafe for RecoveryRecord
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