pub struct ReportFiles {
pub json_path: String,
pub markdown_path: String,
pub lean_diagnostics_json_path: Option<String>,
pub lean_manifest_path: Option<String>,
pub three_tier_json_path: Option<String>,
pub three_tier_markdown_path: Option<String>,
}Expand description
Paths written for CI-oriented report summaries.
Fields§
§json_path: String§markdown_path: String§lean_diagnostics_json_path: Option<String>§lean_manifest_path: Option<String>§three_tier_json_path: Option<String>§three_tier_markdown_path: Option<String>Trait Implementations§
Source§impl Clone for ReportFiles
impl Clone for ReportFiles
Source§fn clone(&self) -> ReportFiles
fn clone(&self) -> ReportFiles
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReportFiles
impl Debug for ReportFiles
impl Eq for ReportFiles
Source§impl PartialEq for ReportFiles
impl PartialEq for ReportFiles
Source§fn eq(&self, other: &ReportFiles) -> bool
fn eq(&self, other: &ReportFiles) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReportFiles
Auto Trait Implementations§
impl Freeze for ReportFiles
impl RefUnwindSafe for ReportFiles
impl Send for ReportFiles
impl Sync for ReportFiles
impl Unpin for ReportFiles
impl UnsafeUnpin for ReportFiles
impl UnwindSafe for ReportFiles
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