pub struct Extent {
pub sector: LogicalSector,
pub length: u32,
}Available on crate feature
alloc and crate feature sync and (crate features alloc or read) only.Expand description
A single extent of a file (sector location + byte length).
Fields§
§sector: LogicalSectorThe sector field.
length: u32The length field.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Extent
impl RefUnwindSafe for Extent
impl Send for Extent
impl Sync for Extent
impl Unpin for Extent
impl UnsafeUnpin for Extent
impl UnwindSafe for Extent
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