pub struct BenchAgenticBranchStats {
pub children_spawned: u64,
pub children_completed: u64,
pub children_errored: u64,
pub children_truncated: u64,
pub children_delayed: u64,
pub parents_suspended: u64,
pub parents_resumed: u64,
pub parents_failed_due_to_child_error: u64,
pub joins_suppressed: u64,
}Fields§
§children_spawned: u64§children_completed: u64§children_errored: u64§children_truncated: u64§children_delayed: u64§parents_suspended: u64§parents_resumed: u64§parents_failed_due_to_child_error: u64§joins_suppressed: u64Trait Implementations§
Source§impl Clone for BenchAgenticBranchStats
impl Clone for BenchAgenticBranchStats
Source§fn clone(&self) -> BenchAgenticBranchStats
fn clone(&self) -> BenchAgenticBranchStats
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 BenchAgenticBranchStats
impl Debug for BenchAgenticBranchStats
Source§impl<'de> Deserialize<'de> for BenchAgenticBranchStats
impl<'de> Deserialize<'de> for BenchAgenticBranchStats
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
impl Eq for BenchAgenticBranchStats
Source§impl JsonSchema for BenchAgenticBranchStats
impl JsonSchema for BenchAgenticBranchStats
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for BenchAgenticBranchStats
impl PartialEq for BenchAgenticBranchStats
Source§impl Serialize for BenchAgenticBranchStats
impl Serialize for BenchAgenticBranchStats
impl StructuralPartialEq for BenchAgenticBranchStats
Auto Trait Implementations§
impl Freeze for BenchAgenticBranchStats
impl RefUnwindSafe for BenchAgenticBranchStats
impl Send for BenchAgenticBranchStats
impl Sync for BenchAgenticBranchStats
impl Unpin for BenchAgenticBranchStats
impl UnsafeUnpin for BenchAgenticBranchStats
impl UnwindSafe for BenchAgenticBranchStats
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