pub struct InfoReport {
pub version: String,
pub system: Vec<(String, String)>,
pub runtime: RuntimeReport,
}Expand description
High-level runtime information for display in the CLI.
Fields§
§version: StringWinbrew version string.
system: Vec<(String, String)>System header entries displayed before the WinBrew tables.
runtime: RuntimeReportStructured runtime sections for rendering.
Trait Implementations§
Source§impl Clone for InfoReport
impl Clone for InfoReport
Source§fn clone(&self) -> InfoReport
fn clone(&self) -> InfoReport
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 InfoReport
impl Debug for InfoReport
Source§impl PartialEq for InfoReport
impl PartialEq for InfoReport
impl Eq for InfoReport
impl StructuralPartialEq for InfoReport
Auto Trait Implementations§
impl Freeze for InfoReport
impl RefUnwindSafe for InfoReport
impl Send for InfoReport
impl Sync for InfoReport
impl Unpin for InfoReport
impl UnwindSafe for InfoReport
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