pub struct AnalyzeArgs {
pub file: String,
pub falsify: bool,
pub min_score: f64,
pub html: Option<String>,
pub json: bool,
}Expand description
Arguments for the analyze subcommand.
Fields§
§file: StringPTX file to analyze
falsify: boolRun full 100-point falsification framework.
The framework is always evaluated by analyze, so this flag is accepted
for backwards compatibility and does not currently change the output.
min_score: f64Fail if score < N
html: Option<String>Write HTML report to file
json: boolOutput JSON format
Trait Implementations§
Source§impl Args for AnalyzeArgs
impl Args for AnalyzeArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Debug for AnalyzeArgs
impl Debug for AnalyzeArgs
Source§impl FromArgMatches for AnalyzeArgs
impl FromArgMatches for AnalyzeArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for AnalyzeArgs
impl RefUnwindSafe for AnalyzeArgs
impl Send for AnalyzeArgs
impl Sync for AnalyzeArgs
impl Unpin for AnalyzeArgs
impl UnsafeUnpin for AnalyzeArgs
impl UnwindSafe for AnalyzeArgs
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