Struct safecoin_client::rpc_sender::RpcTransportStats
source · pub struct RpcTransportStats {
pub request_count: usize,
pub elapsed_time: Duration,
pub rate_limited_time: Duration,
}
Fields§
§request_count: usize
Number of RPC requests issued
elapsed_time: Duration
Total amount of time spent transacting with the RPC server
rate_limited_time: Duration
Total amount of waiting time due to RPC server rate limiting
(a subset of elapsed_time
)
Trait Implementations§
source§impl Clone for RpcTransportStats
impl Clone for RpcTransportStats
source§fn clone(&self) -> RpcTransportStats
fn clone(&self) -> RpcTransportStats
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for RpcTransportStats
impl Default for RpcTransportStats
source§fn default() -> RpcTransportStats
fn default() -> RpcTransportStats
Returns the “default value” for a type. Read more