pub struct ArchiveFailure {
pub dataset_id: String,
pub file: Option<String>,
pub message: String,
}Expand description
Failed dataset or file archive entry.
Fields§
§dataset_id: StringDataset id that failed.
file: Option<String>Optional provider-relative file path.
message: StringHuman-readable failure message.
Trait Implementations§
Source§impl Clone for ArchiveFailure
impl Clone for ArchiveFailure
Source§fn clone(&self) -> ArchiveFailure
fn clone(&self) -> ArchiveFailure
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 ArchiveFailure
impl Debug for ArchiveFailure
impl Eq for ArchiveFailure
Source§impl PartialEq for ArchiveFailure
impl PartialEq for ArchiveFailure
Source§fn eq(&self, other: &ArchiveFailure) -> bool
fn eq(&self, other: &ArchiveFailure) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArchiveFailure
Auto Trait Implementations§
impl Freeze for ArchiveFailure
impl RefUnwindSafe for ArchiveFailure
impl Send for ArchiveFailure
impl Sync for ArchiveFailure
impl Unpin for ArchiveFailure
impl UnsafeUnpin for ArchiveFailure
impl UnwindSafe for ArchiveFailure
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