#[repr(u8)]pub enum FaultHandlerAction {
Ignore = 0,
Abandon = 1,
}Expand description
Available actions which can be taken when a fault has occurred.
Variants§
Ignore = 0
Ignore the fault.
Abandon = 1
Halt the transaction immediately. Do not wait for handshakes.
Trait Implementations§
Source§impl Clone for FaultHandlerAction
impl Clone for FaultHandlerAction
Source§fn clone(&self) -> FaultHandlerAction
fn clone(&self) -> FaultHandlerAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FaultHandlerAction
impl Debug for FaultHandlerAction
impl Eq for FaultHandlerAction
Source§impl FromStr for FaultHandlerAction
impl FromStr for FaultHandlerAction
Source§impl PartialEq for FaultHandlerAction
impl PartialEq for FaultHandlerAction
impl StructuralPartialEq for FaultHandlerAction
Auto Trait Implementations§
impl Freeze for FaultHandlerAction
impl RefUnwindSafe for FaultHandlerAction
impl Send for FaultHandlerAction
impl Sync for FaultHandlerAction
impl Unpin for FaultHandlerAction
impl UnsafeUnpin for FaultHandlerAction
impl UnwindSafe for FaultHandlerAction
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