pub struct Stats {Show 22 fields
pub clients: Vec<ClientStats>,
pub replicas: Vec<ReplicaStats>,
pub client_host_info: HostInfo,
pub abcperf_version: String,
pub algo_version: String,
pub start_time: u64,
pub end_time: u64,
pub algo_name: String,
pub algo_config: HashMap<String, String>,
pub client_config: HashMap<String, String>,
pub n: u64,
pub t: u64,
pub f: u64,
pub omission_chance: f64,
pub experiment_duration: f64,
pub sample_delay: f64,
pub seed: String,
pub network_latency_type: String,
pub network_latency_config: HashMap<String, String>,
pub network_drop_chance: f64,
pub network_duplicate_chance: f64,
pub description: String,
}
Fields§
§clients: Vec<ClientStats>
§replicas: Vec<ReplicaStats>
§client_host_info: HostInfo
§abcperf_version: String
§algo_version: String
§start_time: u64
§end_time: u64
§algo_name: String
§algo_config: HashMap<String, String>
§client_config: HashMap<String, String>
§n: u64
§t: u64
§f: u64
§omission_chance: f64
§experiment_duration: f64
§sample_delay: f64
§seed: String
§network_latency_type: String
§network_latency_config: HashMap<String, String>
§network_drop_chance: f64
§network_duplicate_chance: f64
§description: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Stats
impl<'de> Deserialize<'de> for Stats
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 Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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