pub struct BranchSemantics {
pub success: Option<String>,
pub failure: Option<String>,
pub verify_pass: Option<String>,
pub verify_fail: Option<String>,
pub condition_true: Option<String>,
pub condition_false: Option<String>,
pub loop_continue: Option<String>,
pub loop_exit: Option<String>,
pub escalation: Option<String>,
}Fields§
§success: Option<String>§failure: Option<String>§verify_pass: Option<String>§verify_fail: Option<String>§condition_true: Option<String>§condition_false: Option<String>§loop_continue: Option<String>§loop_exit: Option<String>§escalation: Option<String>Trait Implementations§
Source§impl Clone for BranchSemantics
impl Clone for BranchSemantics
Source§fn clone(&self) -> BranchSemantics
fn clone(&self) -> BranchSemantics
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 BranchSemantics
impl Debug for BranchSemantics
Source§impl Default for BranchSemantics
impl Default for BranchSemantics
Source§fn default() -> BranchSemantics
fn default() -> BranchSemantics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BranchSemanticswhere
BranchSemantics: Default,
impl<'de> Deserialize<'de> for BranchSemanticswhere
BranchSemantics: Default,
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 BranchSemantics
impl PartialEq for BranchSemantics
Source§impl Serialize for BranchSemantics
impl Serialize for BranchSemantics
impl Eq for BranchSemantics
impl StructuralPartialEq for BranchSemantics
Auto Trait Implementations§
impl Freeze for BranchSemantics
impl RefUnwindSafe for BranchSemantics
impl Send for BranchSemantics
impl Sync for BranchSemantics
impl Unpin for BranchSemantics
impl UnsafeUnpin for BranchSemantics
impl UnwindSafe for BranchSemantics
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.