#[non_exhaustive]pub enum BeforeOpDecision<T> {
Continue,
Abort {
reason: String,
message: String,
},
Skip {
result: T,
},
}Expand description
Decision from a “before verify/settle” hook.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Continue
Proceed with the facilitator call.
Abort
Abort the operation with a structured reason.
Skip
Short-circuit: use this local result instead of calling the facilitator.
Fields
§
result: TLocally produced response.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for BeforeOpDecision<T>where
T: Freeze,
impl<T> RefUnwindSafe for BeforeOpDecision<T>where
T: RefUnwindSafe,
impl<T> Send for BeforeOpDecision<T>where
T: Send,
impl<T> Sync for BeforeOpDecision<T>where
T: Sync,
impl<T> Unpin for BeforeOpDecision<T>where
T: Unpin,
impl<T> UnsafeUnpin for BeforeOpDecision<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for BeforeOpDecision<T>where
T: UnwindSafe,
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