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