pub struct AnalyzerConfigSummary {
pub schema_version: u32,
pub non_default_options: Vec<AnalyzeConfigOverrideSummary>,
}Expand description
Summary of non-default analyzer options used during analysis.
Fields§
§schema_version: u32Analyzer config summary schema version.
non_default_options: Vec<AnalyzeConfigOverrideSummary>Non-default semantic analyzer options rendered as stable path/value pairs.
Trait Implementations§
Source§impl Clone for AnalyzerConfigSummary
impl Clone for AnalyzerConfigSummary
Source§fn clone(&self) -> AnalyzerConfigSummary
fn clone(&self) -> AnalyzerConfigSummary
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 AnalyzerConfigSummary
impl Debug for AnalyzerConfigSummary
Source§impl PartialEq for AnalyzerConfigSummary
impl PartialEq for AnalyzerConfigSummary
Source§fn eq(&self, other: &AnalyzerConfigSummary) -> bool
fn eq(&self, other: &AnalyzerConfigSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnalyzerConfigSummary
impl Serialize for AnalyzerConfigSummary
impl StructuralPartialEq for AnalyzerConfigSummary
Auto Trait Implementations§
impl Freeze for AnalyzerConfigSummary
impl RefUnwindSafe for AnalyzerConfigSummary
impl Send for AnalyzerConfigSummary
impl Sync for AnalyzerConfigSummary
impl Unpin for AnalyzerConfigSummary
impl UnsafeUnpin for AnalyzerConfigSummary
impl UnwindSafe for AnalyzerConfigSummary
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