pub struct EntryError {
pub path: String,
pub error: String,
}Expand description
One {path, error} entry from a snapshot’s rootEntry.summ.errors. Kopia records the
source-relative path and the full error string for every entry it could not include.
Fields§
§path: StringSource-relative path of the entry that failed (e.g. secret_dir).
error: StringThe full error string (e.g. ... permission denied).
Trait Implementations§
Source§impl Clone for EntryError
impl Clone for EntryError
Source§fn clone(&self) -> EntryError
fn clone(&self) -> EntryError
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 EntryError
impl Debug for EntryError
Source§impl<'de> Deserialize<'de> for EntryError
impl<'de> Deserialize<'de> for EntryError
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 EntryError
impl PartialEq for EntryError
Source§fn eq(&self, other: &EntryError) -> bool
fn eq(&self, other: &EntryError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EntryError
impl Serialize for EntryError
impl Eq for EntryError
impl StructuralPartialEq for EntryError
Auto Trait Implementations§
impl Freeze for EntryError
impl RefUnwindSafe for EntryError
impl Send for EntryError
impl Sync for EntryError
impl Unpin for EntryError
impl UnsafeUnpin for EntryError
impl UnwindSafe for EntryError
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