Enum rustc_hir_analysis::check::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
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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