pub struct CreateWorkflowTransitionRule {
pub _type: String,
pub configuration: Option<HashMap<String, Value>>,
}Expand description
CreateWorkflowTransitionRule : A workflow transition rule.
Fields§
§_type: StringThe type of the transition rule.
configuration: Option<HashMap<String, Value>>EXPERIMENTAL. The configuration of the transition rule.
Implementations§
Source§impl CreateWorkflowTransitionRule
impl CreateWorkflowTransitionRule
Sourcepub fn new(_type: String) -> CreateWorkflowTransitionRule
pub fn new(_type: String) -> CreateWorkflowTransitionRule
A workflow transition rule.
Trait Implementations§
Source§impl Clone for CreateWorkflowTransitionRule
impl Clone for CreateWorkflowTransitionRule
Source§fn clone(&self) -> CreateWorkflowTransitionRule
fn clone(&self) -> CreateWorkflowTransitionRule
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 CreateWorkflowTransitionRule
impl Debug for CreateWorkflowTransitionRule
Source§impl Default for CreateWorkflowTransitionRule
impl Default for CreateWorkflowTransitionRule
Source§fn default() -> CreateWorkflowTransitionRule
fn default() -> CreateWorkflowTransitionRule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateWorkflowTransitionRule
impl<'de> Deserialize<'de> for CreateWorkflowTransitionRule
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 CreateWorkflowTransitionRule
impl PartialEq for CreateWorkflowTransitionRule
Source§fn eq(&self, other: &CreateWorkflowTransitionRule) -> bool
fn eq(&self, other: &CreateWorkflowTransitionRule) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateWorkflowTransitionRule
Auto Trait Implementations§
impl Freeze for CreateWorkflowTransitionRule
impl RefUnwindSafe for CreateWorkflowTransitionRule
impl Send for CreateWorkflowTransitionRule
impl Sync for CreateWorkflowTransitionRule
impl Unpin for CreateWorkflowTransitionRule
impl UnwindSafe for CreateWorkflowTransitionRule
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