#[repr(u16)]pub enum RejectedErrorCode {
CommandRejected = 1,
RuntimePanic = 103,
}Expand description
Domain/runtime rejection category encoded in committed result records.
Codes 100..=199 are reserved for runtime execution failures that are
still reported as determined command outcomes.
Variants§
CommandRejected = 1
Domain plugin rejected the command deterministically.
RuntimePanic = 103
Runtime trapped a panic while executing the command.
Implementations§
Trait Implementations§
Source§impl Clone for RejectedErrorCode
impl Clone for RejectedErrorCode
Source§fn clone(&self) -> RejectedErrorCode
fn clone(&self) -> RejectedErrorCode
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 RejectedErrorCode
impl Debug for RejectedErrorCode
Source§impl PartialEq for RejectedErrorCode
impl PartialEq for RejectedErrorCode
impl Copy for RejectedErrorCode
impl Eq for RejectedErrorCode
impl StructuralPartialEq for RejectedErrorCode
Auto Trait Implementations§
impl Freeze for RejectedErrorCode
impl RefUnwindSafe for RejectedErrorCode
impl Send for RejectedErrorCode
impl Sync for RejectedErrorCode
impl Unpin for RejectedErrorCode
impl UnsafeUnpin for RejectedErrorCode
impl UnwindSafe for RejectedErrorCode
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