#[non_exhaustive]pub struct ExportedFile {
pub path: Arc<Path>,
pub rows: u64,
pub bytes: u64,
pub sha256: String,
}Expand description
A single file the exporter produced.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.path: Arc<Path>Final on-disk path (after rename).
rows: u64Row count for this file. 0 for the manifest.
bytes: u64Byte size on disk after rename.
sha256: StringHex-encoded SHA-256 of the file contents.
Trait Implementations§
Source§impl Clone for ExportedFile
impl Clone for ExportedFile
Source§fn clone(&self) -> ExportedFile
fn clone(&self) -> ExportedFile
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 ExportedFile
impl Debug for ExportedFile
Source§impl PartialEq for ExportedFile
impl PartialEq for ExportedFile
Source§fn eq(&self, other: &ExportedFile) -> bool
fn eq(&self, other: &ExportedFile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExportedFile
impl StructuralPartialEq for ExportedFile
Auto Trait Implementations§
impl Freeze for ExportedFile
impl RefUnwindSafe for ExportedFile
impl Send for ExportedFile
impl Sync for ExportedFile
impl Unpin for ExportedFile
impl UnsafeUnpin for ExportedFile
impl UnwindSafe for ExportedFile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.