[−][src]Struct getopts::Matches
The result of checking command line arguments. Contains a vector of matches and a vector of free strings.
Fields
free: Vec<String>
Free string fragments
Methods
impl Matches
[src]
pub fn opt_present(&self, nm: &str) -> bool
[src]
Returns true if an option was matched.
pub fn opt_count(&self, nm: &str) -> usize
[src]
Returns the number of times an option was matched.
pub fn opts_present(&self, names: &[String]) -> bool
[src]
Returns true if any of several options were matched.
pub fn opts_str(&self, names: &[String]) -> Option<String>
[src]
Returns the string argument supplied to one of several matching options or None
.
pub fn opt_strs(&self, nm: &str) -> Vec<String>
[src]
Returns a vector of the arguments provided to all matches of the given option.
Used when an option accepts multiple values.
pub fn opt_str(&self, nm: &str) -> Option<String>
[src]
Returns the string argument supplied to a matching option or None
.
pub fn opt_default(&self, nm: &str, def: &str) -> Option<String>
[src]
Returns the matching string, a default, or None
.
Returns None
if the option was not present, def
if the option was
present but no argument was provided, and the argument if the option was
present and an argument was provided.
Trait Implementations
impl Clone for Matches
[src]
fn clone(&self) -> Matches
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Eq for Matches
[src]
impl PartialEq<Matches> for Matches
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,