pub struct WorkflowDocument {
pub dsl: String,
pub namespace: String,
pub name: String,
pub version: String,
pub title: Option<String>,
pub summary: Option<String>,
pub description: Option<String>,
}
Expand description
Serverless Workflow Document
Fields§
§dsl: String
DSL version (e.g., “1.0.0”)
namespace: String
Workflow namespace
name: String
Workflow name
version: String
Workflow version
title: Option<String>
Optional title
summary: Option<String>
Optional summary
description: Option<String>
Optional description
Trait Implementations§
Source§impl Clone for WorkflowDocument
impl Clone for WorkflowDocument
Source§fn clone(&self) -> WorkflowDocument
fn clone(&self) -> WorkflowDocument
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 WorkflowDocument
impl Debug for WorkflowDocument
Source§impl<'de> Deserialize<'de> for WorkflowDocument
impl<'de> Deserialize<'de> for WorkflowDocument
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
Auto Trait Implementations§
impl Freeze for WorkflowDocument
impl RefUnwindSafe for WorkflowDocument
impl Send for WorkflowDocument
impl Sync for WorkflowDocument
impl Unpin for WorkflowDocument
impl UnwindSafe for WorkflowDocument
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