pub struct Request {
pub cdb: [u8; 16],
pub srb_flags: u32,
}
Expand description
A SCSI request.
Fields§
§cdb: [u8; 16]
The SCSI CDB (Command Descriptor Block).
srb_flags: u32
Additional flags from the SCSI request block.
TODO: interpret these OOB flags in storvsp, not in the SCSI implementations.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
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