pub struct WorkflowTransitionLinks {
pub from_port: Option<Option<i32>>,
pub from_status_reference: Option<Option<String>>,
pub to_port: Option<Option<i32>>,
}
Expand description
WorkflowTransitionLinks : The statuses the transition can start from, and the mapping of ports between the statuses.
Fields§
§from_port: Option<Option<i32>>
The port that the transition starts from.
from_status_reference: Option<Option<String>>
The status that the transition starts from.
to_port: Option<Option<i32>>
The port that the transition goes to.
Implementations§
Source§impl WorkflowTransitionLinks
impl WorkflowTransitionLinks
Sourcepub fn new() -> WorkflowTransitionLinks
pub fn new() -> WorkflowTransitionLinks
The statuses the transition can start from, and the mapping of ports between the statuses.
Trait Implementations§
Source§impl Clone for WorkflowTransitionLinks
impl Clone for WorkflowTransitionLinks
Source§fn clone(&self) -> WorkflowTransitionLinks
fn clone(&self) -> WorkflowTransitionLinks
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 WorkflowTransitionLinks
impl Debug for WorkflowTransitionLinks
Source§impl Default for WorkflowTransitionLinks
impl Default for WorkflowTransitionLinks
Source§fn default() -> WorkflowTransitionLinks
fn default() -> WorkflowTransitionLinks
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowTransitionLinks
impl<'de> Deserialize<'de> for WorkflowTransitionLinks
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 WorkflowTransitionLinks
impl PartialEq for WorkflowTransitionLinks
Source§impl Serialize for WorkflowTransitionLinks
impl Serialize for WorkflowTransitionLinks
impl StructuralPartialEq for WorkflowTransitionLinks
Auto Trait Implementations§
impl Freeze for WorkflowTransitionLinks
impl RefUnwindSafe for WorkflowTransitionLinks
impl Send for WorkflowTransitionLinks
impl Sync for WorkflowTransitionLinks
impl Unpin for WorkflowTransitionLinks
impl UnwindSafe for WorkflowTransitionLinks
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