pub struct SerdInfo {
pub name: String,
pub delta_ns: u64,
pub n: u64,
pub t_ns: u64,
pub count: u32,
pub fired: bool,
}Fields§
§name: String§delta_ns: u64Nanoseconds from oldest event to now.
n: u64N parameter (event count threshold).
t_ns: u64T parameter (nanoseconds window).
count: u32Number of events currently in engine.
fired: boolWhether the SERD engine has fired.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SerdInfo
impl RefUnwindSafe for SerdInfo
impl Send for SerdInfo
impl Sync for SerdInfo
impl Unpin for SerdInfo
impl UnsafeUnpin for SerdInfo
impl UnwindSafe for SerdInfo
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