#[repr(u8)]pub enum Rspt {
NO_RESP = 0,
INTERRUPT = 1,
NMI = 2,
DEBUG_HALT = 3,
}Variants§
NO_RESP = 0
No response when the ETB count expires
INTERRUPT = 1
Generates a normal interrupt when the ETB count expires
NMI = 2
Generates an NMI interrupt when the ETB count expires
DEBUG_HALT = 3
Generates a debug halt when the ETB count expires via CPU0 CTICHIN[2]
Implementations§
Trait Implementations§
Source§impl Ord for Rspt
impl Ord for Rspt
Source§impl PartialOrd for Rspt
impl PartialOrd for Rspt
impl Copy for Rspt
impl Eq for Rspt
impl StructuralPartialEq for Rspt
Auto Trait Implementations§
impl Freeze for Rspt
impl RefUnwindSafe for Rspt
impl Send for Rspt
impl Sync for Rspt
impl Unpin for Rspt
impl UnwindSafe for Rspt
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