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
Auto Trait Implementations§
impl Freeze for RpcTransportStats
impl RefUnwindSafe for RpcTransportStats
impl Send for RpcTransportStats
impl Sync for RpcTransportStats
impl Unpin for RpcTransportStats
impl UnwindSafe for RpcTransportStats
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