pub struct SparseFileIntegrity {
pub root: String,
pub logical_size: u64,
}Expand description
Sparse-aware immutable identity of one physical layer file.
Fields§
§root: StringBLAKE3 Merkle root.
logical_size: u64Logical file length bound by the root.
Trait Implementations§
Source§impl Clone for SparseFileIntegrity
impl Clone for SparseFileIntegrity
Source§fn clone(&self) -> SparseFileIntegrity
fn clone(&self) -> SparseFileIntegrity
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 SparseFileIntegrity
impl Debug for SparseFileIntegrity
impl Eq for SparseFileIntegrity
Source§impl PartialEq for SparseFileIntegrity
impl PartialEq for SparseFileIntegrity
impl StructuralPartialEq for SparseFileIntegrity
Auto Trait Implementations§
impl Freeze for SparseFileIntegrity
impl RefUnwindSafe for SparseFileIntegrity
impl Send for SparseFileIntegrity
impl Sync for SparseFileIntegrity
impl Unpin for SparseFileIntegrity
impl UnsafeUnpin for SparseFileIntegrity
impl UnwindSafe for SparseFileIntegrity
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