pub struct FreeRegion {
pub start_lba: u64,
pub end_lba: u64,
}Expand description
Represents a free space region on disk
Fields§
§start_lba: u64§end_lba: u64Implementations§
Trait Implementations§
Source§impl Clone for FreeRegion
impl Clone for FreeRegion
Source§fn clone(&self) -> FreeRegion
fn clone(&self) -> FreeRegion
Returns a copy 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 FreeRegion
impl Debug for FreeRegion
impl Copy for FreeRegion
Auto Trait Implementations§
impl Freeze for FreeRegion
impl RefUnwindSafe for FreeRegion
impl Send for FreeRegion
impl Sync for FreeRegion
impl Unpin for FreeRegion
impl UnwindSafe for FreeRegion
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