pub struct UnifiedAnalysisOptions<'a> {Show 16 fields
pub results: &'a AnalysisResults,
pub coverage_file: Option<&'a PathBuf>,
pub semantic_off: bool,
pub project_path: &'a Path,
pub verbose_macro_warnings: bool,
pub show_macro_stats: bool,
pub parallel: bool,
pub jobs: usize,
pub use_cache: bool,
pub multi_pass: bool,
pub show_attribution: bool,
pub aggregate_only: bool,
pub no_aggregation: bool,
pub aggregation_method: Option<String>,
pub min_problematic: Option<usize>,
pub no_god_object: bool,
}Expand description
Options for unified analysis
Fields§
§results: &'a AnalysisResults§coverage_file: Option<&'a PathBuf>§semantic_off: bool§project_path: &'a Path§verbose_macro_warnings: bool§show_macro_stats: bool§parallel: bool§jobs: usize§use_cache: bool§multi_pass: bool§show_attribution: bool§aggregate_only: bool§no_aggregation: bool§aggregation_method: Option<String>§min_problematic: Option<usize>§no_god_object: boolAuto Trait Implementations§
impl<'a> Freeze for UnifiedAnalysisOptions<'a>
impl<'a> RefUnwindSafe for UnifiedAnalysisOptions<'a>
impl<'a> Send for UnifiedAnalysisOptions<'a>
impl<'a> Sync for UnifiedAnalysisOptions<'a>
impl<'a> Unpin for UnifiedAnalysisOptions<'a>
impl<'a> UnwindSafe for UnifiedAnalysisOptions<'a>
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more