pub struct Options {Show 19 fields
pub input: PathBuf,
pub output: PathBuf,
pub overwrite: bool,
pub skip_extract_scripts: bool,
pub skip_extract_common_events: bool,
pub skip_extract_system: bool,
pub skip_extract_actors: bool,
pub skip_extract_weapons: bool,
pub skip_extract_armors: bool,
pub skip_extract_skills: bool,
pub skip_extract_states: bool,
pub skip_extract_items: bool,
pub skip_extract_enemies: bool,
pub skip_extract_classes: bool,
pub skip_extract_troops: bool,
pub skip_extract_tilesets: bool,
pub skip_extract_map_infos: bool,
pub skip_extract_animations: bool,
pub skip_extract_maps: bool,
}
Fields§
§input: PathBuf
§output: PathBuf
§overwrite: bool
§skip_extract_scripts: bool
§skip_extract_common_events: bool
§skip_extract_system: bool
§skip_extract_actors: bool
§skip_extract_weapons: bool
§skip_extract_armors: bool
§skip_extract_skills: bool
§skip_extract_states: bool
§skip_extract_items: bool
§skip_extract_enemies: bool
§skip_extract_classes: bool
§skip_extract_troops: bool
§skip_extract_tilesets: bool
§skip_extract_map_infos: bool
§skip_extract_animations: bool
§skip_extract_maps: bool
Trait Implementations§
Source§impl FromArgs for Options
impl FromArgs for Options
Source§fn from_args(__cmd_name: &[&str], __args: &[&str]) -> Result<Self, EarlyExit>
fn from_args(__cmd_name: &[&str], __args: &[&str]) -> Result<Self, EarlyExit>
Construct the type from an input set of arguments. Read more
Source§fn redact_arg_values(
__cmd_name: &[&str],
__args: &[&str],
) -> Result<Vec<String>, EarlyExit>
fn redact_arg_values( __cmd_name: &[&str], __args: &[&str], ) -> Result<Vec<String>, EarlyExit>
Get a String with just the argument names, e.g., options, flags, subcommands, etc, but
without the values of the options and arguments. This can be useful as a means to capture
anonymous usage statistics without revealing the content entered by the end user. Read more
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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> SubCommands for Twhere
T: SubCommand,
impl<T> SubCommands for Twhere
T: SubCommand,
§fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
Get a list of commands that are discovered at runtime.