pub struct Report {
pub markdown: String,
pub html: String,
pub data: Value,
}Expand description
One composed report in its three renderings.
Fields§
§markdown: StringThe Markdown document.
html: StringThe self-contained HTML page, including its module map.
data: ValueThe gathered evidence, for a consumer that renders its own view.
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