#[repr(u8)]pub enum HandlerCode {
Cancel = 1,
Suspend = 2,
Ignore = 3,
Abandon = 4,
}Expand description
Handler codes for Fault Handler Override TLV (Table 5-19)
Variants§
Cancel = 1
Cancel the transaction (default).
Suspend = 2
Suspend the transaction.
Ignore = 3
Ignore the fault and continue.
Abandon = 4
Abandon the transaction without further PDUs.
Trait Implementations§
Source§impl Clone for HandlerCode
impl Clone for HandlerCode
Source§fn clone(&self) -> HandlerCode
fn clone(&self) -> HandlerCode
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 HandlerCode
impl Debug for HandlerCode
Source§impl Default for HandlerCode
impl Default for HandlerCode
Source§fn default() -> HandlerCode
fn default() -> HandlerCode
Returns the “default value” for a type. Read more
Source§impl PartialEq for HandlerCode
impl PartialEq for HandlerCode
Source§impl TryFrom<u8> for HandlerCode
impl TryFrom<u8> for HandlerCode
impl Copy for HandlerCode
impl Eq for HandlerCode
impl StructuralPartialEq for HandlerCode
Auto Trait Implementations§
impl Freeze for HandlerCode
impl RefUnwindSafe for HandlerCode
impl Send for HandlerCode
impl Sync for HandlerCode
impl Unpin for HandlerCode
impl UnsafeUnpin for HandlerCode
impl UnwindSafe for HandlerCode
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