pub enum RequestType {
Select(Aid, Interface),
GetResponse,
NewCommand(Interface),
BadCommand(Status),
None,
}Variants§
Select(Aid, Interface)
GetResponse
Get Response including the Le field of the command
NewCommand(Interface)
BadCommand(Status)
Incorrect command, which means an error should be returned
None
Auto Trait Implementations§
impl Freeze for RequestType
impl RefUnwindSafe for RequestType
impl Send for RequestType
impl Sync for RequestType
impl Unpin for RequestType
impl UnwindSafe for RequestType
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