pub struct SectorRange {
pub start: u64,
pub count: u64,
}Expand description
A contiguous run of sectors [start, start + count).
Fields§
§start: u64§count: u64Implementations§
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 moreimpl Copy for SectorRange
Source§impl Debug for SectorRange
impl Debug for SectorRange
impl Eq for SectorRange
Source§impl PartialEq for SectorRange
impl PartialEq for SectorRange
Source§fn eq(&self, other: &SectorRange) -> bool
fn eq(&self, other: &SectorRange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SectorRange
Auto 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