Skip to main content

ConflictingOptionError

Struct ConflictingOptionError 

Source
pub struct ConflictingOptionError<'a> { /* private fields */ }
Expand description

Error indicating that two or more options conflict with each other

This is a helper object for constructing an error message from a list of conflicting option occurrences. An instance of this type can be created using new or pick_from_indexes and printed with report_error.

Implementations§

Source§

impl<'a> ConflictingOptionError<'a>

Source

pub fn new<T: Into<Vec<OptionOccurrence<'a>>>>(options: T) -> Self

Creates a new ConflictingOptionError from a list of conflicting options.

The vector should contain at least two elements, or the returned error object may panic when formatted.

Source

pub fn pick_from_indexes<const N: usize>( options: Vec<OptionOccurrence<'a>>, indexes: [usize; N], ) -> Self

Creates a new ConflictingOptionError with conflicting options extracted from a vector.

This function retains only the options in the vector whose indexes are specified in indexes. The other options are discarded.

The indexes may be specified in any order as they are sorted in this function.

indexes should contain at least two elements, or the returned error object may panic when formatted. This function panics immediately if indexes contains a duplicate index.

This function is useful for constructing a ConflictingOptionError from the result of parse_arguments. After examining the OptionOccurrence vector returned by the function, the caller can pick the indexes of the conflicting options and pass them to this function.

For example, calling ConflictingOptionError::pick_from_indexes(vec![a, b, c, d, e], [3, 0]) is equivalent to ConflictingOptionError::new([a, d]).

Source

pub fn options(&self) -> &[OptionOccurrence<'a>]

Returns the list of conflicting options.

Source

pub fn to_report(&'a self) -> Report<'a>

Converts this error into a report.

Trait Implementations§

Source§

impl<'a> Clone for ConflictingOptionError<'a>

Source§

fn clone(&self) -> ConflictingOptionError<'a>

Returns a duplicate 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<'a> Debug for ConflictingOptionError<'a>

Source§

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

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

impl<'a> Display for ConflictingOptionError<'a>

Source§

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

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

impl<'a> Error for ConflictingOptionError<'a>

1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<'a> From<&'a ConflictingOptionError<'a>> for Report<'a>

Source§

fn from(error: &'a ConflictingOptionError<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<ConflictingOptionError<'a>> for Vec<OptionOccurrence<'a>>

Source§

fn from(error: ConflictingOptionError<'a>) -> Self

Converts to this type from the input type.
Source§

impl From<ConflictingOptionError<'static>> for Error

Source§

fn from(source: ConflictingOptionError<'static>) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<Vec<OptionOccurrence<'a>>> for ConflictingOptionError<'a>

Source§

fn from(options: Vec<OptionOccurrence<'a>>) -> Self

Creates a new ConflictingOptionError from a list of conflicting options.

The vector should contain at least two elements, or the returned error object may panic when formatted.

Source§

impl<'a> PartialEq for ConflictingOptionError<'a>

Source§

fn eq(&self, other: &ConflictingOptionError<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> Eq for ConflictingOptionError<'a>

Source§

impl<'a> StructuralPartialEq for ConflictingOptionError<'a>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

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

Source§

fn __clone_box(&self, _: Private) -> *mut ()

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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

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

Source§

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

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>,

Source§

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.