pub struct ProtectionError {
pub failure: ProtectionFailure,
pub partial_report: ProtectionReport,
pub rollback: RollbackReport,
}Expand description
Error returned when a required runtime protection cannot be established.
Fields§
§failure: ProtectionFailureOriginal control failure.
partial_report: ProtectionReportState reached before rollback began.
rollback: RollbackReportExplicit cleanup outcome.
Trait Implementations§
Source§impl Clone for ProtectionError
impl Clone for ProtectionError
Source§fn clone(&self) -> ProtectionError
fn clone(&self) -> ProtectionError
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 moreimpl Copy for ProtectionError
Source§impl Debug for ProtectionError
impl Debug for ProtectionError
Source§impl Display for ProtectionError
impl Display for ProtectionError
impl Eq for ProtectionError
Source§impl Error for ProtectionError
Available on crate feature std only.
impl Error for ProtectionError
Available on crate feature
std only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl<E> From<ProtectionError> for ProtectedSecretFillError<E>
impl<E> From<ProtectionError> for ProtectedSecretFillError<E>
Source§fn from(error: ProtectionError) -> Self
fn from(error: ProtectionError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ProtectionError
impl PartialEq for ProtectionError
impl StructuralPartialEq for ProtectionError
Auto Trait Implementations§
impl Freeze for ProtectionError
impl RefUnwindSafe for ProtectionError
impl Send for ProtectionError
impl Sync for ProtectionError
impl Unpin for ProtectionError
impl UnsafeUnpin for ProtectionError
impl UnwindSafe for ProtectionError
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