pub struct Storm {
pub scope_kind: String,
pub scope: String,
pub peak_count: usize,
pub window_ms: u64,
pub first_offset_ms: f64,
pub last_offset_ms: f64,
pub calls_per_sec: f64,
pub entry_ids: Vec<String>,
}Fields§
§scope_kind: String§scope: String§peak_count: usize§window_ms: u64§first_offset_ms: f64§last_offset_ms: f64§calls_per_sec: f64§entry_ids: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Storm
impl RefUnwindSafe for Storm
impl Send for Storm
impl Sync for Storm
impl Unpin for Storm
impl UnsafeUnpin for Storm
impl UnwindSafe for Storm
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