pub struct SectorRange {
pub first_sector: u64,
pub sector_count: u64,
}Expand description
Inclusive start plus count sector range.
Fields§
§first_sector: u64First sector in the range.
sector_count: u64Number of sectors in the range.
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 moreSource§impl Debug for SectorRange
impl Debug for SectorRange
impl Eq for SectorRange
Source§impl PartialEq for SectorRange
impl PartialEq for SectorRange
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.