#[repr(u8)]pub enum Retry {
RETRANSMISSION = 0,
COUNT_RETRY = 1,
COUNT_RETRY1 = 2,
COUNT_RETRY2 = 3,
COUNT_RETRY3 = 4,
COUNT_RETRY4 = 5,
COUNT_RETRY5 = 6,
UNLIMIT_RETRY = 7,
}Variants§
RETRANSMISSION = 0
No retransmission
COUNT_RETRY = 1
Count of re-transmission attempts
COUNT_RETRY1 = 2
Count of re-transmission attempts
COUNT_RETRY2 = 3
Count of re-transmission attempts
COUNT_RETRY3 = 4
Count of re-transmission attempts
COUNT_RETRY4 = 5
Count of re-transmission attempts
COUNT_RETRY5 = 6
Count of re-transmission attempts
UNLIMIT_RETRY = 7
Unlimited number of retransmission
Implementations§
Trait Implementations§
Source§impl Ord for Retry
impl Ord for Retry
Source§impl PartialOrd for Retry
impl PartialOrd for Retry
impl Copy for Retry
impl Eq for Retry
impl StructuralPartialEq for Retry
Auto Trait Implementations§
impl Freeze for Retry
impl RefUnwindSafe for Retry
impl Send for Retry
impl Sync for Retry
impl Unpin for Retry
impl UnwindSafe for Retry
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