pub struct PrettyFormatReportV0 {
pub schema_version: &'static str,
pub product: &'static str,
pub line_width: usize,
pub indent_width: usize,
pub covered_node_count: usize,
pub structured_node_count: usize,
pub verbatim_leaf_count: usize,
pub fallback_node_count: usize,
pub edit_count: usize,
pub fallback_reasons: Vec<&'static str>,
pub coverage_manifest: Vec<FormatIrCoverageEntryV0>,
}Fields§
§schema_version: &'static str§product: &'static str§line_width: usize§indent_width: usize§covered_node_count: usize§structured_node_count: usize§verbatim_leaf_count: usize§fallback_node_count: usize§edit_count: usize§fallback_reasons: Vec<&'static str>§coverage_manifest: Vec<FormatIrCoverageEntryV0>Trait Implementations§
Source§impl Clone for PrettyFormatReportV0
impl Clone for PrettyFormatReportV0
Source§fn clone(&self) -> PrettyFormatReportV0
fn clone(&self) -> PrettyFormatReportV0
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 PrettyFormatReportV0
impl Debug for PrettyFormatReportV0
impl Eq for PrettyFormatReportV0
Source§impl PartialEq for PrettyFormatReportV0
impl PartialEq for PrettyFormatReportV0
Source§impl Serialize for PrettyFormatReportV0
impl Serialize for PrettyFormatReportV0
impl StructuralPartialEq for PrettyFormatReportV0
Auto Trait Implementations§
impl Freeze for PrettyFormatReportV0
impl RefUnwindSafe for PrettyFormatReportV0
impl Send for PrettyFormatReportV0
impl Sync for PrettyFormatReportV0
impl Unpin for PrettyFormatReportV0
impl UnsafeUnpin for PrettyFormatReportV0
impl UnwindSafe for PrettyFormatReportV0
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.