pub struct ReportSection {
pub title: String,
pub entries: Vec<(String, String)>,
}Expand description
A titled section of key/value runtime report data.
Fields§
§title: StringSection title.
entries: Vec<(String, String)>Key/value entries in display order.
Trait Implementations§
Source§impl Clone for ReportSection
impl Clone for ReportSection
Source§fn clone(&self) -> ReportSection
fn clone(&self) -> ReportSection
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 ReportSection
impl Debug for ReportSection
Source§impl PartialEq for ReportSection
impl PartialEq for ReportSection
impl Eq for ReportSection
impl StructuralPartialEq for ReportSection
Auto Trait Implementations§
impl Freeze for ReportSection
impl RefUnwindSafe for ReportSection
impl Send for ReportSection
impl Sync for ReportSection
impl Unpin for ReportSection
impl UnwindSafe for ReportSection
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