pub enum InterceptorContinuation {
Reinvoke,
Stop,
}Variants§
Reinvoke
Rerun the same interceptor after orchestrator action execution.
Stop
Proceed to the next interceptor.
Trait Implementations§
Source§impl Clone for InterceptorContinuation
impl Clone for InterceptorContinuation
Source§fn clone(&self) -> InterceptorContinuation
fn clone(&self) -> InterceptorContinuation
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 InterceptorContinuation
impl Debug for InterceptorContinuation
Source§impl<'de> Deserialize<'de> for InterceptorContinuation
impl<'de> Deserialize<'de> for InterceptorContinuation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for InterceptorContinuation
impl PartialEq for InterceptorContinuation
Source§fn eq(&self, other: &InterceptorContinuation) -> bool
fn eq(&self, other: &InterceptorContinuation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InterceptorContinuation
impl Serialize for InterceptorContinuation
impl Copy for InterceptorContinuation
impl Eq for InterceptorContinuation
impl StructuralPartialEq for InterceptorContinuation
Auto Trait Implementations§
impl Freeze for InterceptorContinuation
impl RefUnwindSafe for InterceptorContinuation
impl Send for InterceptorContinuation
impl Sync for InterceptorContinuation
impl Unpin for InterceptorContinuation
impl UnsafeUnpin for InterceptorContinuation
impl UnwindSafe for InterceptorContinuation
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