Enum rustc_hir_typeck::fn_ctxt::arg_matrix::Error
source · pub(crate) enum Error<'tcx> {
Invalid(ProvidedIdx, ExpectedIdx, Compatibility<'tcx>),
Missing(ExpectedIdx),
Extra(ProvidedIdx),
Swap(ProvidedIdx, ProvidedIdx, ExpectedIdx, ExpectedIdx),
Permutation(Vec<(ExpectedIdx, ProvidedIdx)>),
}Expand description
Similar to Issue, but contains some extra information
Variants§
Invalid(ProvidedIdx, ExpectedIdx, Compatibility<'tcx>)
The provided argument is the invalid type for the expected input
Missing(ExpectedIdx)
There is a missing input
Extra(ProvidedIdx)
There’s a superfluous argument
Swap(ProvidedIdx, ProvidedIdx, ExpectedIdx, ExpectedIdx)
Two arguments should be swapped
Permutation(Vec<(ExpectedIdx, ProvidedIdx)>)
Several arguments should be reordered
Trait Implementations§
source§impl Ord for Error<'_>
impl Ord for Error<'_>
source§impl<'tcx> PartialEq for Error<'tcx>
impl<'tcx> PartialEq for Error<'tcx>
source§impl PartialOrd for Error<'_>
impl PartialOrd for Error<'_>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl<'tcx> Eq for Error<'tcx>
impl<'tcx> StructuralPartialEq for Error<'tcx>
Auto Trait Implementations§
impl<'tcx> !RefUnwindSafe for Error<'tcx>
impl<'tcx> Send for Error<'tcx>
impl<'tcx> Sync for Error<'tcx>
impl<'tcx> Unpin for Error<'tcx>
impl<'tcx> !UnwindSafe for Error<'tcx>
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 40 bytes
Size for each variant:
Invalid: 40 bytesMissing: 4 bytesExtra: 4 bytesSwap: 16 bytesPermutation: 24 bytes