pub struct ArchivedFile {
pub dataset_id: String,
pub source_path: String,
pub local_path: PathBuf,
pub bytes_written: u64,
pub skipped: bool,
}Expand description
One archived or skipped file.
Fields§
§dataset_id: StringDataset id that owns the file.
source_path: StringProvider-relative file path.
local_path: PathBufLocal path written or skipped.
bytes_written: u64Number of bytes written during this run.
skipped: boolWhether an existing file was skipped.
Trait Implementations§
Source§impl Clone for ArchivedFile
impl Clone for ArchivedFile
Source§fn clone(&self) -> ArchivedFile
fn clone(&self) -> ArchivedFile
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 ArchivedFile
impl Debug for ArchivedFile
impl Eq for ArchivedFile
Source§impl PartialEq for ArchivedFile
impl PartialEq for ArchivedFile
Source§fn eq(&self, other: &ArchivedFile) -> bool
fn eq(&self, other: &ArchivedFile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArchivedFile
Auto Trait Implementations§
impl Freeze for ArchivedFile
impl RefUnwindSafe for ArchivedFile
impl Send for ArchivedFile
impl Sync for ArchivedFile
impl Unpin for ArchivedFile
impl UnsafeUnpin for ArchivedFile
impl UnwindSafe for ArchivedFile
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