pub enum Condition {
CONDITION_UNSET,
CONDITION_ON_ERROR_CONTINUE_PIPELINE,
CONDITION_ON_ERROR_ABORT_PIPELINE,
CONDITION_ON_ERROR_NOTIFY_SERVER,
CONDITION_ON_MATCH_CONTINUE_PIPELINE,
CONDITION_ON_MATCH_ABORT_PIPELINE,
CONDITION_ON_MATCH_NOTIFY_SERVER,
}Expand description
Condition defines how the pipeline should behave when a condition is met
Variants§
CONDITION_UNSET
CONDITION_ON_ERROR_CONTINUE_PIPELINE
CONDITION_ON_ERROR_ABORT_PIPELINE
CONDITION_ON_ERROR_NOTIFY_SERVER
CONDITION_ON_MATCH_CONTINUE_PIPELINE
CONDITION_ON_MATCH_ABORT_PIPELINE
CONDITION_ON_MATCH_NOTIFY_SERVER
Trait Implementations§
source§impl Enum for Condition
impl Enum for Condition
source§impl EnumFull for Condition
impl EnumFull for Condition
source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
source§impl PartialEq<Condition> for Condition
impl PartialEq<Condition> for Condition
impl Copy for Condition
impl Eq for Condition
impl StructuralEq for Condition
impl StructuralPartialEq for Condition
Auto Trait Implementations§
impl RefUnwindSafe for Condition
impl Send for Condition
impl Sync for Condition
impl Unpin for Condition
impl UnwindSafe for Condition
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