pub struct WorkflowIds {
pub name: String,
pub entity_id: Option<String>,
}Expand description
WorkflowIds : The classic workflow identifiers.
Fields§
§name: StringThe name of the workflow.
entity_id: Option<String>The entity ID of the workflow.
Implementations§
Source§impl WorkflowIds
impl WorkflowIds
Sourcepub fn new(name: String) -> WorkflowIds
pub fn new(name: String) -> WorkflowIds
The classic workflow identifiers.
Trait Implementations§
Source§impl Clone for WorkflowIds
impl Clone for WorkflowIds
Source§fn clone(&self) -> WorkflowIds
fn clone(&self) -> WorkflowIds
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 WorkflowIds
impl Debug for WorkflowIds
Source§impl Default for WorkflowIds
impl Default for WorkflowIds
Source§fn default() -> WorkflowIds
fn default() -> WorkflowIds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowIds
impl<'de> Deserialize<'de> for WorkflowIds
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 WorkflowIds
impl PartialEq for WorkflowIds
Source§impl Serialize for WorkflowIds
impl Serialize for WorkflowIds
impl StructuralPartialEq for WorkflowIds
Auto Trait Implementations§
impl Freeze for WorkflowIds
impl RefUnwindSafe for WorkflowIds
impl Send for WorkflowIds
impl Sync for WorkflowIds
impl Unpin for WorkflowIds
impl UnwindSafe for WorkflowIds
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