pub struct ParallelismPattern {
pub has_fanouts: bool,
pub typical_fanout_width: Option<u32>,
pub predominantly_serial: bool,
}Expand description
Summary of observed parallelism behavior across runs.
Fields§
§has_fanouts: boolWhether any tool fan-outs were observed.
typical_fanout_width: Option<u32>Typical observed fan-out width, when fan-outs were present.
predominantly_serial: boolWhether the workflow was mostly serial despite any fan-outs.
Trait Implementations§
Source§impl Clone for ParallelismPattern
impl Clone for ParallelismPattern
Source§fn clone(&self) -> ParallelismPattern
fn clone(&self) -> ParallelismPattern
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 ParallelismPattern
impl Debug for ParallelismPattern
Source§impl<'de> Deserialize<'de> for ParallelismPattern
impl<'de> Deserialize<'de> for ParallelismPattern
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
Source§impl PartialEq for ParallelismPattern
impl PartialEq for ParallelismPattern
Source§fn eq(&self, other: &ParallelismPattern) -> bool
fn eq(&self, other: &ParallelismPattern) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ParallelismPattern
impl Serialize for ParallelismPattern
impl StructuralPartialEq for ParallelismPattern
Auto Trait Implementations§
impl Freeze for ParallelismPattern
impl RefUnwindSafe for ParallelismPattern
impl Send for ParallelismPattern
impl Sync for ParallelismPattern
impl Unpin for ParallelismPattern
impl UnsafeUnpin for ParallelismPattern
impl UnwindSafe for ParallelismPattern
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