pub struct RunStats {
pub finished: Option<Finished>,
pub hosts: Option<HostStats>,
}
Expand description
Statistics about the scan run
Fields§
§finished: Option<Finished>
Information about scan completion
hosts: Option<HostStats>
Host statistics
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunStats
impl<'de> Deserialize<'de> for RunStats
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 RunStats
impl RefUnwindSafe for RunStats
impl Send for RunStats
impl Sync for RunStats
impl Unpin for RunStats
impl UnwindSafe for RunStats
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