pub struct StoredFile {
pub path: PathBuf,
pub size: u64,
pub checksum_sha256: String,
}Expand description
Metadata returned from CacheManager::store.
Fields§
§path: PathBufAbsolute path where the file was written.
size: u64§checksum_sha256: StringSHA-256 checksum in lower-case hex.
Trait Implementations§
Source§impl Clone for StoredFile
impl Clone for StoredFile
Source§fn clone(&self) -> StoredFile
fn clone(&self) -> StoredFile
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 StoredFile
impl Debug for StoredFile
Source§impl PartialEq for StoredFile
impl PartialEq for StoredFile
Source§fn eq(&self, other: &StoredFile) -> bool
fn eq(&self, other: &StoredFile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StoredFile
impl StructuralPartialEq for StoredFile
Auto Trait Implementations§
impl Freeze for StoredFile
impl RefUnwindSafe for StoredFile
impl Send for StoredFile
impl Sync for StoredFile
impl Unpin for StoredFile
impl UnsafeUnpin for StoredFile
impl UnwindSafe for StoredFile
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.