pub enum SchiCommandStatus {
ShciSuccess = 0,
ShciUnknownCmd = 1,
ShciMemoryCapacityExceededErrCode = 7,
ShciErrUnsupportedFeature = 17,
ShciErrInvalidHciCmdParams = 18,
ShciErrInvalidParams = 66,
ShciErrInvalidParamsV2 = 146,
ShciFusCmdNotSupported = 255,
}
Variants§
ShciSuccess = 0
ShciUnknownCmd = 1
ShciMemoryCapacityExceededErrCode = 7
ShciErrUnsupportedFeature = 17
ShciErrInvalidHciCmdParams = 18
ShciErrInvalidParams = 66
ShciErrInvalidParamsV2 = 146
ShciFusCmdNotSupported = 255
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SchiCommandStatus
impl RefUnwindSafe for SchiCommandStatus
impl Send for SchiCommandStatus
impl Sync for SchiCommandStatus
impl Unpin for SchiCommandStatus
impl UnwindSafe for SchiCommandStatus
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