pub enum RESPONSE_A {
NO_RESP = 0,
ZERO_DATA = 1,
}
Expand description
Controls the response of the ISO IN endpoint to an IN token when no data is ready to be sent
Value on reset: 0
Variants§
NO_RESP = 0
0: Endpoint does not respond in that case
ZERO_DATA = 1
1: Endpoint responds with a zero-length data packet in that case
Trait Implementations§
Source§impl Clone for RESPONSE_A
impl Clone for RESPONSE_A
Source§fn clone(&self) -> RESPONSE_A
fn clone(&self) -> RESPONSE_A
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RESPONSE_A
impl Debug for RESPONSE_A
Source§impl From<RESPONSE_A> for bool
impl From<RESPONSE_A> for bool
Source§fn from(variant: RESPONSE_A) -> Self
fn from(variant: RESPONSE_A) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RESPONSE_A
impl PartialEq for RESPONSE_A
impl Copy for RESPONSE_A
impl StructuralPartialEq for RESPONSE_A
Auto Trait Implementations§
impl Freeze for RESPONSE_A
impl RefUnwindSafe for RESPONSE_A
impl Send for RESPONSE_A
impl Sync for RESPONSE_A
impl Unpin for RESPONSE_A
impl UnwindSafe for RESPONSE_A
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