pub enum IsoTpTimeout {
TimeoutAr {
timeout_ms: u32,
},
TimeoutAs {
timeout_ms: u32,
},
TimeoutBr {
timeout_ms: u32,
},
TimeoutBs {
timeout_ms: u32,
},
TimeoutCr {
timeout_ms: u32,
},
TimeoutCs {
timeout_ms: u32,
},
}Expand description
ISO-TP timeout type define. The unit of value is ms.
Variants§
Trait Implementations§
Source§impl Clone for IsoTpTimeout
impl Clone for IsoTpTimeout
Source§fn clone(&self) -> IsoTpTimeout
fn clone(&self) -> IsoTpTimeout
Returns a duplicate 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 IsoTpTimeout
impl Debug for IsoTpTimeout
impl Copy for IsoTpTimeout
Auto Trait Implementations§
impl Freeze for IsoTpTimeout
impl RefUnwindSafe for IsoTpTimeout
impl Send for IsoTpTimeout
impl Sync for IsoTpTimeout
impl Unpin for IsoTpTimeout
impl UnwindSafe for IsoTpTimeout
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