pub struct RecoveryResult {
pub success: bool,
pub recovered_scope: Option<Scope>,
pub errors: Vec<String>,
}Expand description
Result of recovery operation.
Fields§
§success: boolWhether recovery succeeded
recovered_scope: Option<Scope>Recovered scope (if successful)
errors: Vec<String>Errors encountered during recovery
Implementations§
Trait Implementations§
Source§impl Clone for RecoveryResult
impl Clone for RecoveryResult
Source§fn clone(&self) -> RecoveryResult
fn clone(&self) -> RecoveryResult
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 RecoveryResult
impl Debug for RecoveryResult
Source§impl<'de> Deserialize<'de> for RecoveryResult
impl<'de> Deserialize<'de> for RecoveryResult
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
Source§impl PartialEq for RecoveryResult
impl PartialEq for RecoveryResult
Source§impl Serialize for RecoveryResult
impl Serialize for RecoveryResult
impl StructuralPartialEq for RecoveryResult
Auto Trait Implementations§
impl Freeze for RecoveryResult
impl RefUnwindSafe for RecoveryResult
impl Send for RecoveryResult
impl Sync for RecoveryResult
impl Unpin for RecoveryResult
impl UnwindSafe for RecoveryResult
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