pub struct LoadStats {
pub requests_sent: AtomicU64,
pub requests_success: AtomicU64,
pub requests_failed: AtomicU64,
pub connections_opened: AtomicU64,
pub connections_failed: AtomicU64,
pub bytes_sent: AtomicU64,
pub bytes_received: AtomicU64,
/* private fields */
}Expand description
Statistics collected during load generation.
Fields§
§requests_sent: AtomicU64§requests_success: AtomicU64§requests_failed: AtomicU64§connections_opened: AtomicU64§connections_failed: AtomicU64§bytes_sent: AtomicU64§bytes_received: AtomicU64Implementations§
Auto Trait Implementations§
impl !Freeze for LoadStats
impl !RefUnwindSafe for LoadStats
impl Send for LoadStats
impl Sync for LoadStats
impl Unpin for LoadStats
impl UnsafeUnpin for LoadStats
impl UnwindSafe for LoadStats
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