#[repr(u8)]pub enum CommandReturnStatus {
Show 16 variants
OK = 0,
InternalError = 1,
BadOp = 2,
BadParam = 3,
BadSysState = 4,
BadResource = 5,
ResourceBusy = 6,
ExceedLim = 8,
BadResState = 9,
BadIndex = 10,
NoResources = 15,
BadInputLen = 80,
BadOutputLen = 81,
BadResourceState = 16,
BadPkt = 48,
BadSize = 64,
}
Expand description
Command status written by HW in status field of the output data in the command entry.
See CommandQueueEntry::command_output_status
.
Variants§
OK = 0
InternalError = 1
BadOp = 2
BadParam = 3
BadSysState = 4
BadResource = 5
ResourceBusy = 6
ExceedLim = 8
BadResState = 9
BadIndex = 10
NoResources = 15
BadInputLen = 80
BadOutputLen = 81
BadResourceState = 16
BadPkt = 48
BadSize = 64
Trait Implementations§
source§impl Debug for CommandReturnStatus
impl Debug for CommandReturnStatus
source§impl TryFrom<u8> for CommandReturnStatus
impl TryFrom<u8> for CommandReturnStatus
Auto Trait Implementations§
impl RefUnwindSafe for CommandReturnStatus
impl Send for CommandReturnStatus
impl Sync for CommandReturnStatus
impl Unpin for CommandReturnStatus
impl UnwindSafe for CommandReturnStatus
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