Struct room4doom::CLIOptions

source ·
pub struct CLIOptions {
Show 20 fields pub verbose: LevelFilter, pub iwad: String, pub pwad: Vec<String>, pub width: u32, pub height: u32, pub fullscreen: Option<bool>, pub double: Option<bool>, pub no_monsters: bool, pub skill: Skill, pub episode: i32, pub map: i32, pub help: bool, pub palette_test: bool, pub image_test: Option<String>, pub image_cycle_test: bool, pub texture_test: bool, pub flats_test: bool, pub sprites_test: bool, pub rendering: Option<RenderType>, pub shader: Option<Shaders>,
}
Expand description

CLI options for the game-exe

Fields§

§verbose: LevelFilter§iwad: String§pwad: Vec<String>§width: u32§height: u32§fullscreen: Option<bool>§double: Option<bool>§no_monsters: bool§skill: Skill§episode: i32§map: i32§help: bool§palette_test: bool§image_test: Option<String>§image_cycle_test: bool§texture_test: bool§flats_test: bool§sprites_test: bool§rendering: Option<RenderType>§shader: Option<Shaders>

Trait Implementations§

source§

impl Clone for CLIOptions

source§

fn clone(&self) -> CLIOptions

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CLIOptions

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<CLIOptions> for DoomOptions

source§

fn from(g: CLIOptions) -> Self

Converts to this type from the input type.
source§

impl Options for CLIOptions

source§

fn parse<__S: AsRef<str>>(_parser: &mut Parser<'_, __S>) -> Result<Self, Error>

Parses arguments until the given parser is exhausted or until an error is encountered.
source§

fn command(&self) -> Option<&dyn Options>

Returns the subcommand instance, if present. Read more
source§

fn command_name(&self) -> Option<&'static str>

Returns the name of a parsed command, if present. Read more
source§

fn help_requested(&self) -> bool

Returns whether the user supplied a “help” option to request usage information about the program or any contained subcommands. Read more
source§

fn parse_command<__S: AsRef<str>>( name: &str, _parser: &mut Parser<'_, __S> ) -> Result<Self, Error>

Parses options for the named command.
source§

fn usage() -> &'static str

Returns a string showing usage and help for each supported option. Read more
source§

fn self_usage(&self) -> &'static str

Returns a string showing usage and help for this options instance. Read more
source§

fn command_list() -> Option<&'static str>

Returns a string listing available commands and help text. Read more
source§

fn command_usage(_name: &str) -> Option<&'static str>

Returns a usage string for the named command. Read more
source§

fn self_command_list(&self) -> Option<&'static str>

Returns a listing of available commands and help text. Read more
§

fn parse_args<S>(args: &[S], style: ParsingStyle) -> Result<Self, Error>
where S: AsRef<str>, Self: Sized,

Parses arguments received from the command line. Read more
§

fn parse_args_or_exit(style: ParsingStyle) -> Self
where Self: Sized,

Parses arguments from the environment. Read more
§

fn parse_args_default_or_exit() -> Self
where Self: Sized,

Parses arguments from the environment, using the default parsing style. Read more
§

fn parse_args_default<S>(args: &[S]) -> Result<Self, Error>
where S: AsRef<str>, Self: Sized,

Parses arguments received from the command line, using the default parsing style. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.