pub struct WorkflowEntry {
pub id: String,
pub name: String,
}Expand description
Workflow entry in the manifest
Fields§
§id: StringWorkflow ID (used for API calls)
name: StringWorkflow name (used for file storage)
Implementations§
Trait Implementations§
Source§impl Clone for WorkflowEntry
impl Clone for WorkflowEntry
Source§fn clone(&self) -> WorkflowEntry
fn clone(&self) -> WorkflowEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkflowEntry
impl Debug for WorkflowEntry
Source§impl<'de> Deserialize<'de> for WorkflowEntry
impl<'de> Deserialize<'de> for WorkflowEntry
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 WorkflowEntry
impl PartialEq for WorkflowEntry
Source§impl Serialize for WorkflowEntry
impl Serialize for WorkflowEntry
impl StructuralPartialEq for WorkflowEntry
Auto Trait Implementations§
impl Freeze for WorkflowEntry
impl RefUnwindSafe for WorkflowEntry
impl Send for WorkflowEntry
impl Sync for WorkflowEntry
impl Unpin for WorkflowEntry
impl UnsafeUnpin for WorkflowEntry
impl UnwindSafe for WorkflowEntry
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