pub struct WorkflowIR {
pub id: String,
pub name: String,
pub description: Option<String>,
pub activities: Vec<ActivityIR>,
pub connections: Vec<Connection>,
}
Expand description
Minimal workflow IR representation
Fields§
§id: String
§name: String
§description: Option<String>
§activities: Vec<ActivityIR>
§connections: Vec<Connection>
Trait Implementations§
Source§impl Clone for WorkflowIR
impl Clone for WorkflowIR
Source§fn clone(&self) -> WorkflowIR
fn clone(&self) -> WorkflowIR
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 WorkflowIR
impl Debug for WorkflowIR
Source§impl<'de> Deserialize<'de> for WorkflowIR
impl<'de> Deserialize<'de> for WorkflowIR
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 WorkflowIR
impl RefUnwindSafe for WorkflowIR
impl Send for WorkflowIR
impl Sync for WorkflowIR
impl Unpin for WorkflowIR
impl UnwindSafe for WorkflowIR
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