pub struct ParallelValue {
pub name: String,
pub agents: Vec<Expression>,
pub timeout_ms: u64,
}Expand description
Runtime value for a parallel execution block
Fields§
§name: String§agents: Vec<Expression>§timeout_ms: u64Trait Implementations§
Source§impl Clone for ParallelValue
impl Clone for ParallelValue
Source§fn clone(&self) -> ParallelValue
fn clone(&self) -> ParallelValue
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 ParallelValue
impl Debug for ParallelValue
Source§impl PartialEq for ParallelValue
impl PartialEq for ParallelValue
impl StructuralPartialEq for ParallelValue
Auto Trait Implementations§
impl Freeze for ParallelValue
impl RefUnwindSafe for ParallelValue
impl Send for ParallelValue
impl Sync for ParallelValue
impl Unpin for ParallelValue
impl UnwindSafe for ParallelValue
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