pub enum Issue {
    Conflict {
        destination_full_ref_name: BString,
        sources: Vec<Source>,
        specs: Vec<BString>,
    },
}
Expand description

All possible issues found while validating matched mappings.

Variants

Conflict

Fields

destination_full_ref_name: BString

The unenforced full name of the reference to be written.

sources: Vec<Source>

The list of sources that map to this destination.

specs: Vec<BString>

The list of specs that caused the mapping conflict, each matching the respective one in sources to allow both sources and specs to be zipped together.

Multiple sources try to write the same destination.

Note that this issue doesn’t take into consideration that these sources might contain the same object behind a reference.

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.