pub enum ScsiOp {
ReadToc,
ReadCd,
ReadSubChannel,
}Expand description
SCSI command groups issued by this library.
Variants§
ReadToc
READ TOC/PMA/ATIP command (opcode 0x43) for TOC/session metadata.
ReadCd
READ CD command (opcode 0xBE) for CD-DA sector payload (2352 bytes/sector).
ReadSubChannel
READ SUB-CHANNEL command for Q-channel/subcode metadata.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScsiOp
impl RefUnwindSafe for ScsiOp
impl Send for ScsiOp
impl Sync for ScsiOp
impl Unpin for ScsiOp
impl UnwindSafe for ScsiOp
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