pub struct BenchSessionPhaseSummary {
pub planned_sessions: u32,
pub started_sessions: u32,
pub succeeded_sessions: u32,
pub failed_sessions: u32,
pub planned_requests: u32,
pub attempted_requests: u32,
pub completed_requests: u32,
pub failed_requests: u32,
pub reconciled: bool,
}Expand description
Reconciled native evidence for one session-bounded Bench phase.
Fields§
§planned_sessions: u32§started_sessions: u32§succeeded_sessions: u32§failed_sessions: u32§planned_requests: u32§attempted_requests: u32§completed_requests: u32§failed_requests: u32§reconciled: boolTrait Implementations§
Source§impl Clone for BenchSessionPhaseSummary
impl Clone for BenchSessionPhaseSummary
Source§fn clone(&self) -> BenchSessionPhaseSummary
fn clone(&self) -> BenchSessionPhaseSummary
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 BenchSessionPhaseSummary
impl Debug for BenchSessionPhaseSummary
Source§impl<'de> Deserialize<'de> for BenchSessionPhaseSummary
impl<'de> Deserialize<'de> for BenchSessionPhaseSummary
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 JsonSchema for BenchSessionPhaseSummary
impl JsonSchema for BenchSessionPhaseSummary
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 BenchSessionPhaseSummary
impl PartialEq for BenchSessionPhaseSummary
Source§impl Serialize for BenchSessionPhaseSummary
impl Serialize for BenchSessionPhaseSummary
impl StructuralPartialEq for BenchSessionPhaseSummary
Auto Trait Implementations§
impl Freeze for BenchSessionPhaseSummary
impl RefUnwindSafe for BenchSessionPhaseSummary
impl Send for BenchSessionPhaseSummary
impl Sync for BenchSessionPhaseSummary
impl Unpin for BenchSessionPhaseSummary
impl UnsafeUnpin for BenchSessionPhaseSummary
impl UnwindSafe for BenchSessionPhaseSummary
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