strest 0.1.10

Blazing-fast async HTTP load tester in Rust - lock-free design, real-time stats, distributed runs, and optional chart exports for high-load API testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) type ReplayWindow = crate::system::replay_compare::PlaybackState;

#[derive(Default)]
pub(crate) struct SnapshotMarkers {
    pub(crate) start: Option<u64>,
    pub(crate) end: Option<u64>,
}

impl SnapshotMarkers {
    pub(crate) const fn clear(&mut self) {
        self.start = None;
        self.end = None;
    }
}