pub struct ParallelGroup {
pub group_id: String,
pub tool_names: Vec<String>,
}Expand description
Group of tools that have been observed to run in parallel.
Fields§
§group_id: StringStable identifier for the parallel group.
tool_names: Vec<String>Tool names that belong to the group.
Trait Implementations§
Source§impl Clone for ParallelGroup
impl Clone for ParallelGroup
Source§fn clone(&self) -> ParallelGroup
fn clone(&self) -> ParallelGroup
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 ParallelGroup
impl Debug for ParallelGroup
Source§impl<'de> Deserialize<'de> for ParallelGroup
impl<'de> Deserialize<'de> for ParallelGroup
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 ParallelGroup
impl RefUnwindSafe for ParallelGroup
impl Send for ParallelGroup
impl Sync for ParallelGroup
impl Unpin for ParallelGroup
impl UnsafeUnpin for ParallelGroup
impl UnwindSafe for ParallelGroup
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