pub struct ExecutionResultSummary {Show 23 fields
pub exec_ctr: usize,
pub request_or_group_id: String,
pub parent_exec_ctr: Option<usize>,
pub child_exec_ctrs: Option<Vec<usize>>,
pub level: usize,
pub name: String,
pub key: Option<String>,
pub tag: Option<String>,
pub method: Option<String>,
pub url: Option<String>,
pub executed_at: u128,
pub duration: u128,
pub status: Option<u16>,
pub status_text: Option<String>,
pub has_response_headers: bool,
pub response_body_length: Option<usize>,
pub success: ExecutionResultSuccess,
pub error: Option<ApicizeError>,
pub test_results: Option<Vec<ApicizeTestBehavior>>,
pub run_number: Option<usize>,
pub run_count: Option<usize>,
pub row_number: Option<usize>,
pub row_count: Option<usize>,
}Expand description
Summary information about a request or group execution used for menus and summaries
Fields§
§exec_ctr: usizeExecution counter/identifier (will be the same for summary and detail)
request_or_group_id: StringRequest or group ID
parent_exec_ctr: Option<usize>Counter/identifier of parent execution result, if any
child_exec_ctrs: Option<Vec<usize>>Counters/identifiers of child execution results, if any
level: usizeIndentation level
name: StringName of request or group
key: Option<String>Optional referential key
tag: Option<String>Associative tag name
method: Option<String>Method for request
url: Option<String>URL requested
executed_at: u128Execution start (millisecond offset from start)
duration: u128Duration of execution (milliseconds)
status: Option<u16>HTTP status code
status_text: Option<String>HTTP status text
has_response_headers: boolIf true, this is for a request and headers were returned
response_body_length: Option<usize>Used to indicate the length of a response body, if any
success: ExecutionResultSuccessIndicates level of call success
error: Option<ApicizeError>§test_results: Option<Vec<ApicizeTestBehavior>>Executed test results, if any
run_number: Option<usize>Ordinal run number, if mult-run result
run_count: Option<usize>Ordinal run count, if mult-run result
row_number: Option<usize>Ordinal row number, if mult-row result
row_count: Option<usize>Ordinal row count, if multi-row result
Trait Implementations§
Source§impl Clone for ExecutionResultSummary
impl Clone for ExecutionResultSummary
Source§fn clone(&self) -> ExecutionResultSummary
fn clone(&self) -> ExecutionResultSummary
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more