pub struct ParallelHint {
pub tool_name: String,
pub group_id: String,
pub explicit: bool,
}Expand description
Hint describing one tool’s membership in a parallel-execution cohort.
Fields§
§tool_name: StringTool name that participates in the hinted group.
group_id: StringStable group identifier shared by all tools in the cohort.
explicit: boolWhether the hint was explicitly authored rather than inferred.
Trait Implementations§
Source§impl Clone for ParallelHint
impl Clone for ParallelHint
Source§fn clone(&self) -> ParallelHint
fn clone(&self) -> ParallelHint
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 ParallelHint
impl Debug for ParallelHint
Source§impl<'de> Deserialize<'de> for ParallelHint
impl<'de> Deserialize<'de> for ParallelHint
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 ParallelHint
impl RefUnwindSafe for ParallelHint
impl Send for ParallelHint
impl Sync for ParallelHint
impl Unpin for ParallelHint
impl UnsafeUnpin for ParallelHint
impl UnwindSafe for ParallelHint
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