pub struct AnalogizeOptions { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for AnalogizeOptions
impl Clone for AnalogizeOptions
Source§fn clone(&self) -> AnalogizeOptions
fn clone(&self) -> AnalogizeOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CommandLine for AnalogizeOptions
impl CommandLine for AnalogizeOptions
Source§fn add_opts(&self, prefix: Option<&str>, opts: &mut Options)
fn add_opts(&self, prefix: Option<&str>, opts: &mut Options)
Add options to the getopts parser.
Source§fn matches(&mut self, prefix: Option<&str>, matches: &Matches)
fn matches(&mut self, prefix: Option<&str>, matches: &Matches)
Assign values to self using the provided getopts matches.
Source§fn canonical_command_line(&self, prefix: Option<&str>) -> Vec<String>
fn canonical_command_line(&self, prefix: Option<&str>) -> Vec<String>
Return the canonical command line for this CommandLine.
Source§fn from_command_line(usage: &str) -> (Self, Vec<String>)
fn from_command_line(usage: &str) -> (Self, Vec<String>)
Parse from the command line. This function will panic if a non-canonical command line is
provided.
Source§fn from_command_line_relaxed(usage: &str) -> (Self, Vec<String>)
fn from_command_line_relaxed(usage: &str) -> (Self, Vec<String>)
Parse from the command line. This function will allow a non-canonical command line to
execute.
Source§fn from_arguments(usage: &str, args: &[&str]) -> (Self, Vec<String>)
fn from_arguments(usage: &str, args: &[&str]) -> (Self, Vec<String>)
Parse from the provided arguments. This function will panic if a non-canonical command
line is provided.
Source§impl Debug for AnalogizeOptions
impl Debug for AnalogizeOptions
Source§impl Default for AnalogizeOptions
impl Default for AnalogizeOptions
Source§impl PartialEq for AnalogizeOptions
impl PartialEq for AnalogizeOptions
impl Eq for AnalogizeOptions
impl StructuralPartialEq for AnalogizeOptions
Auto Trait Implementations§
impl Freeze for AnalogizeOptions
impl RefUnwindSafe for AnalogizeOptions
impl Send for AnalogizeOptions
impl Sync for AnalogizeOptions
impl Unpin for AnalogizeOptions
impl UnwindSafe for AnalogizeOptions
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