pub(crate) struct CompareMatrixArgs {
pub(crate) specs: Vec<Box<str>>,
pub(crate) duration: u32,
pub(crate) iterations: u32,
pub(crate) jobs: usize,
pub(crate) race: Option<String>,
pub(crate) format: MatrixFormat,
}Fields§
§specs: Vec<Box<str>>Optional spec slugs. Omit to compare every supported spec.
duration: u32Fight duration in seconds.
iterations: u32Number of iterations per provider and spec.
jobs: usizeMaximum number of specs compared concurrently.
race: Option<String>Player race override applied to every spec.
format: MatrixFormatOutput format.
Trait Implementations§
Source§impl Args for CompareMatrixArgs
impl Args for CompareMatrixArgs
Source§fn group_id() -> Option<Id>
fn group_id() -> Option<Id>
Report the [
ArgGroup::id][crate::ArgGroup::id] for this set of argumentsSource§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 CompareMatrixArgs
impl Debug for CompareMatrixArgs
Source§impl FromArgMatches for CompareMatrixArgs
impl FromArgMatches for CompareMatrixArgs
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.Source§impl TryFrom<&CompareMatrixArgs> for RunParameters
impl TryFrom<&CompareMatrixArgs> for RunParameters
Source§type Error = RunParametersError
type Error = RunParametersError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for CompareMatrixArgs
impl RefUnwindSafe for CompareMatrixArgs
impl Send for CompareMatrixArgs
impl Sync for CompareMatrixArgs
impl Unpin for CompareMatrixArgs
impl UnsafeUnpin for CompareMatrixArgs
impl UnwindSafe for CompareMatrixArgs
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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