pub struct Run {
pub length: u64,
pub lcn: Option<u64>,
}Expand description
One data run: a contiguous span of clusters, or a sparse hole.
Fields§
§length: u64Length of the run, in clusters.
lcn: Option<u64>Starting logical cluster number, or None for a sparse run.
Trait Implementations§
impl Copy for Run
impl Eq for Run
impl StructuralPartialEq for Run
Auto Trait Implementations§
impl Freeze for Run
impl RefUnwindSafe for Run
impl Send for Run
impl Sync for Run
impl Unpin for Run
impl UnsafeUnpin for Run
impl UnwindSafe for Run
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