pub struct Report {
pub name: String,
pub hosts: ReportHosts,
}Expand description
The Report format. The report is broken down into a list of hosts, each of which has an associated list of findings.
Fields§
§name: StringName of the report
hosts: ReportHostsHolds a Vec of ReportHosts
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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