#[repr(C)]pub enum RuntimeErrorPhase {
Load = 1,
Create = 2,
RunTx = 3,
ValidateBizInvariants = 4,
Unload = 5,
}Expand description
Phase in which an ABI error occurred.
Variants§
Load = 1
Plugin metadata or schema loading.
Create = 2
Runtime plugin instance creation.
RunTx = 3
Transaction execution.
ValidateBizInvariants = 4
Business invariant validation.
Unload = 5
Plugin unload.
Trait Implementations§
Source§impl Clone for RuntimeErrorPhase
impl Clone for RuntimeErrorPhase
Source§fn clone(&self) -> RuntimeErrorPhase
fn clone(&self) -> RuntimeErrorPhase
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 RuntimeErrorPhase
impl Debug for RuntimeErrorPhase
Source§impl PartialEq for RuntimeErrorPhase
impl PartialEq for RuntimeErrorPhase
impl Copy for RuntimeErrorPhase
impl Eq for RuntimeErrorPhase
impl StructuralPartialEq for RuntimeErrorPhase
Auto Trait Implementations§
impl Freeze for RuntimeErrorPhase
impl RefUnwindSafe for RuntimeErrorPhase
impl Send for RuntimeErrorPhase
impl Sync for RuntimeErrorPhase
impl Unpin for RuntimeErrorPhase
impl UnsafeUnpin for RuntimeErrorPhase
impl UnwindSafe for RuntimeErrorPhase
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