#[repr(u8)]pub enum Retrydis {
RETRIED = 0,
DO_NOT_RETRIED = 1,
}Variants§
RETRIED = 0
Retried NAK’ed transactions in hardware.
DO_NOT_RETRIED = 1
Do not retry NAK’ed transactions. When a transaction is NAK’ed, the BDT PID field is updated with the NAK PID, and the TOKEN_DNE interrupt becomes 1.
Implementations§
Trait Implementations§
Source§impl Ord for Retrydis
impl Ord for Retrydis
Source§impl PartialOrd for Retrydis
impl PartialOrd for Retrydis
impl Copy for Retrydis
impl Eq for Retrydis
impl StructuralPartialEq for Retrydis
Auto Trait Implementations§
impl Freeze for Retrydis
impl RefUnwindSafe for Retrydis
impl Send for Retrydis
impl Sync for Retrydis
impl Unpin for Retrydis
impl UnwindSafe for Retrydis
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