#[repr(u8)]pub enum ResponseStatus {
Show 18 variants
OK = 0,
ReturnBeforeInventoryFinished = 1,
ScanTimeOverflow = 2,
MoreData = 3,
ReaderFlashFull = 4,
AccessPasswordError = 5,
KillTagError = 9,
KillPasswordZero = 10,
CommandNotSupported = 11,
SaveFail = 19,
CannotAdjust = 20,
CommandExecuteError = 249,
PoorCommunication = 250,
NoTags = 251,
TagError = 252,
WrongLength = 253,
IllegalCommand = 254,
ParameterError = 255,
}Variants§
OK = 0
ReturnBeforeInventoryFinished = 1
ScanTimeOverflow = 2
MoreData = 3
ReaderFlashFull = 4
AccessPasswordError = 5
KillTagError = 9
KillPasswordZero = 10
CommandNotSupported = 11
SaveFail = 19
CannotAdjust = 20
CommandExecuteError = 249
PoorCommunication = 250
NoTags = 251
TagError = 252
WrongLength = 253
IllegalCommand = 254
ParameterError = 255
Trait Implementations§
Source§impl Debug for ResponseStatus
impl Debug for ResponseStatus
Source§impl From<ResponseStatus> for Error
impl From<ResponseStatus> for Error
Source§fn from(e: ResponseStatus) -> Error
fn from(e: ResponseStatus) -> Error
Converts to this type from the input type.
Source§impl PartialEq for ResponseStatus
impl PartialEq for ResponseStatus
Source§impl TryFrom<u8> for ResponseStatus
impl TryFrom<u8> for ResponseStatus
Source§type Error = TryFromPrimitiveError<ResponseStatus>
type Error = TryFromPrimitiveError<ResponseStatus>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for ResponseStatus
impl TryFromPrimitive for ResponseStatus
impl Eq for ResponseStatus
impl StructuralPartialEq for ResponseStatus
Auto Trait Implementations§
impl Freeze for ResponseStatus
impl RefUnwindSafe for ResponseStatus
impl Send for ResponseStatus
impl Sync for ResponseStatus
impl Unpin for ResponseStatus
impl UnwindSafe for ResponseStatus
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