pub struct ParallelBranchDef {
pub name: String,
pub nodes: Vec<NodeDef>,
}Expand description
并行分支定义
Fields§
§name: String分支名称
nodes: Vec<NodeDef>分支节点列表
Trait Implementations§
Source§impl Clone for ParallelBranchDef
impl Clone for ParallelBranchDef
Source§fn clone(&self) -> ParallelBranchDef
fn clone(&self) -> ParallelBranchDef
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 ParallelBranchDef
impl Debug for ParallelBranchDef
Source§impl<'de> Deserialize<'de> for ParallelBranchDef
impl<'de> Deserialize<'de> for ParallelBranchDef
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 ParallelBranchDef
impl RefUnwindSafe for ParallelBranchDef
impl Send for ParallelBranchDef
impl Sync for ParallelBranchDef
impl Unpin for ParallelBranchDef
impl UnsafeUnpin for ParallelBranchDef
impl UnwindSafe for ParallelBranchDef
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