pub struct FdLeakWarning {
pub start_count: usize,
pub end_count: usize,
pub consecutive_increases: usize,
}Fields§
§start_count: usizeFD count at the start of the observation window.
end_count: usizeFD count at the end.
consecutive_increases: usizeHow many consecutive samples showed an increase.
Trait Implementations§
Source§impl Clone for FdLeakWarning
impl Clone for FdLeakWarning
Source§fn clone(&self) -> FdLeakWarning
fn clone(&self) -> FdLeakWarning
Returns a duplicate 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 Debug for FdLeakWarning
impl Debug for FdLeakWarning
Source§impl<'de> Deserialize<'de> for FdLeakWarning
impl<'de> Deserialize<'de> for FdLeakWarning
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FdLeakWarning
impl RefUnwindSafe for FdLeakWarning
impl Send for FdLeakWarning
impl Sync for FdLeakWarning
impl Unpin for FdLeakWarning
impl UnsafeUnpin for FdLeakWarning
impl UnwindSafe for FdLeakWarning
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