struct PendingWrite {
request_id: u32,
sector: u64,
num_sectors: u32,
bytes: u32,
active: bool,
}Expand description
Pending write request.
Fields§
§request_id: u32Request ID (unique per write).
sector: u64Starting sector.
num_sectors: u32Number of sectors.
bytes: u32Number of bytes in this write.
active: boolWhether this request is active.
Trait Implementations§
Source§impl Clone for PendingWrite
impl Clone for PendingWrite
Source§fn clone(&self) -> PendingWrite
fn clone(&self) -> PendingWrite
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 PendingWrite
impl Debug for PendingWrite
Source§impl Default for PendingWrite
impl Default for PendingWrite
impl Copy for PendingWrite
Auto Trait Implementations§
impl Freeze for PendingWrite
impl RefUnwindSafe for PendingWrite
impl Send for PendingWrite
impl Sync for PendingWrite
impl Unpin for PendingWrite
impl UnwindSafe for PendingWrite
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