pub struct ChunkLocation {
pub offset: u64,
pub sectors: u64,
}Fields§
§offset: u64The offset, in units of 4kiB sectors, into the region file this chunk is located at. Offset 0 is the start of the file.
sectors: u64The number of 4 kiB sectors that this chunk occupies in the region file.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChunkLocation
impl RefUnwindSafe for ChunkLocation
impl Send for ChunkLocation
impl Sync for ChunkLocation
impl Unpin for ChunkLocation
impl UnwindSafe for ChunkLocation
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