pub struct RuntimeReport {
pub sections: Vec<ReportSection>,
}Expand description
Runtime report sections rendered by the info command.
Fields§
§sections: Vec<ReportSection>Ordered report sections.
Implementations§
Source§impl RuntimeReport
impl RuntimeReport
Sourcepub fn new(sections: Vec<ReportSection>) -> Self
pub fn new(sections: Vec<ReportSection>) -> Self
Build a runtime report from pre-computed sections.
Trait Implementations§
Source§impl Clone for RuntimeReport
impl Clone for RuntimeReport
Source§fn clone(&self) -> RuntimeReport
fn clone(&self) -> RuntimeReport
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 RuntimeReport
impl Debug for RuntimeReport
Source§impl PartialEq for RuntimeReport
impl PartialEq for RuntimeReport
impl Eq for RuntimeReport
impl StructuralPartialEq for RuntimeReport
Auto Trait Implementations§
impl Freeze for RuntimeReport
impl RefUnwindSafe for RuntimeReport
impl Send for RuntimeReport
impl Sync for RuntimeReport
impl Unpin for RuntimeReport
impl UnwindSafe for RuntimeReport
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