pub struct ParallelDecl {
pub name: String,
pub agents: Vec<Expression>,
pub timeout: Duration,
pub span: Span,
}Expand description
Parallel execution block declaration
Fields§
§name: String§agents: Vec<Expression>§timeout: Duration§span: SpanTrait Implementations§
Source§impl Clone for ParallelDecl
impl Clone for ParallelDecl
Source§fn clone(&self) -> ParallelDecl
fn clone(&self) -> ParallelDecl
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 ParallelDecl
impl Debug for ParallelDecl
Source§impl PartialEq for ParallelDecl
impl PartialEq for ParallelDecl
impl StructuralPartialEq for ParallelDecl
Auto Trait Implementations§
impl Freeze for ParallelDecl
impl RefUnwindSafe for ParallelDecl
impl Send for ParallelDecl
impl Sync for ParallelDecl
impl Unpin for ParallelDecl
impl UnwindSafe for ParallelDecl
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