pub struct RestoreFailure {
pub file: &'static str,
pub detail: String,
}Expand description
A restore that could not put a file back; the backups stay.
Fields§
§file: &'static strThe file that is not back.
detail: StringWhy, one line.
Trait Implementations§
Source§impl Clone for RestoreFailure
impl Clone for RestoreFailure
Source§fn clone(&self) -> RestoreFailure
fn clone(&self) -> RestoreFailure
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 RestoreFailure
impl Debug for RestoreFailure
Source§impl Display for RestoreFailure
impl Display for RestoreFailure
impl Eq for RestoreFailure
Source§impl PartialEq for RestoreFailure
impl PartialEq for RestoreFailure
impl StructuralPartialEq for RestoreFailure
Auto Trait Implementations§
impl Freeze for RestoreFailure
impl RefUnwindSafe for RestoreFailure
impl Send for RestoreFailure
impl Sync for RestoreFailure
impl Unpin for RestoreFailure
impl UnsafeUnpin for RestoreFailure
impl UnwindSafe for RestoreFailure
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