pub struct SectorRange {
pub start_lba: u32,
pub count: u32,
pub status: SectorStatus,
pub byte_offset: u64,
}Expand description
A contiguous range of bad or slow sectors.
Fields§
§start_lba: u32§count: u32§status: SectorStatus§byte_offset: u64Byte offset from start of title
Trait Implementations§
Source§impl Clone for SectorRange
impl Clone for SectorRange
Source§fn clone(&self) -> SectorRange
fn clone(&self) -> SectorRange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SectorRange
impl RefUnwindSafe for SectorRange
impl Send for SectorRange
impl Sync for SectorRange
impl Unpin for SectorRange
impl UnsafeUnpin for SectorRange
impl UnwindSafe for SectorRange
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