pub enum CowMapEntry {
LocalOffset(u64),
ParentRef,
Unallocated,
}Expand description
Entry in the COW cluster map.
Variants§
LocalOffset(u64)
Cluster has been written locally at the given offset.
ParentRef
Cluster data lives in the parent file.
Unallocated
Cluster has not been allocated.
Trait Implementations§
Source§impl Clone for CowMapEntry
impl Clone for CowMapEntry
Source§fn clone(&self) -> CowMapEntry
fn clone(&self) -> CowMapEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 CowMapEntry
impl Debug for CowMapEntry
Source§impl Hash for CowMapEntry
impl Hash for CowMapEntry
Source§impl PartialEq for CowMapEntry
impl PartialEq for CowMapEntry
impl Copy for CowMapEntry
impl Eq for CowMapEntry
impl StructuralPartialEq for CowMapEntry
Auto Trait Implementations§
impl Freeze for CowMapEntry
impl RefUnwindSafe for CowMapEntry
impl Send for CowMapEntry
impl Sync for CowMapEntry
impl Unpin for CowMapEntry
impl UnwindSafe for CowMapEntry
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