Enum rustc_resolve::ResolutionError [−][src]
pub(crate) enum ResolutionError<'a> {
Show 22 variants
GenericParamsFromOuterFunction(Res<NodeId>, HasGenericParams),
NameAlreadyUsedInParameterList(Symbol, Span),
MethodNotMemberOfTrait(Ident, &'a str, Option<Symbol>),
TypeNotMemberOfTrait(Ident, &'a str, Option<Symbol>),
ConstNotMemberOfTrait(Ident, &'a str, Option<Symbol>),
VariableNotBoundInPattern(&'a BindingError),
VariableBoundWithDifferentMode(Symbol, Span),
IdentifierBoundMoreThanOnceInParameterList(Symbol),
IdentifierBoundMoreThanOnceInSamePattern(Symbol),
UndeclaredLabel {
name: Symbol,
suggestion: Option<(Ident, bool)>,
},
SelfImportsOnlyAllowedWithin {
root: bool,
span_with_rename: Span,
},
SelfImportCanOnlyAppearOnceInTheList,
SelfImportOnlyInImportListWithNonEmptyPrefix,
FailedToResolve {
label: String,
suggestion: Option<(Vec<(Span, String)>, String, Applicability)>,
},
CannotCaptureDynamicEnvironmentInFnItem,
AttemptToUseNonConstantValueInConstant(Ident, &'static str, &'static str),
BindingShadowsSomethingUnacceptable {
shadowing_binding_descr: &'static str,
name: Symbol,
participle: &'static str,
article: &'static str,
shadowed_binding_descr: &'static str,
shadowed_binding_span: Span,
},
ForwardDeclaredGenericParam,
ParamInTyOfConstParam(Symbol),
ParamInNonTrivialAnonConst {
name: Symbol,
is_type: bool,
},
SelfInGenericParamDefault,
UnreachableLabel {
name: Symbol,
definition_span: Span,
suggestion: Option<(Ident, bool)>,
},
}
Variants
GenericParamsFromOuterFunction(Res<NodeId>, HasGenericParams)
Error E0401: can’t use type or const parameters from outer function.
Tuple Fields of GenericParamsFromOuterFunction
0: Res<NodeId>
1: HasGenericParams
Error E0403: the name is already used for a type or const parameter in this generic parameter list.
Error E0407: method is not a member of trait.
Error E0437: type is not a member of trait.
Error E0438: const is not a member of trait.
VariableNotBoundInPattern(&'a BindingError)
Error E0408: variable {}
is not bound in all patterns.
Tuple Fields of VariableNotBoundInPattern
0: &'a BindingError
Error E0409: variable {}
is bound in inconsistent ways within the same match arm.
IdentifierBoundMoreThanOnceInParameterList(Symbol)
Error E0415: identifier is bound more than once in this parameter list.
Tuple Fields of IdentifierBoundMoreThanOnceInParameterList
0: Symbol
IdentifierBoundMoreThanOnceInSamePattern(Symbol)
Error E0416: identifier is bound more than once in the same pattern.
Tuple Fields of IdentifierBoundMoreThanOnceInSamePattern
0: Symbol
Error E0426: use of undeclared label.
Error E0429: self
imports are only allowed within a { }
list.
Error E0430: self
import can only appear once in the list.
Error E0431: self
import can only appear in an import list with a non-empty prefix.
Error E0433: failed to resolve.
Fields of FailedToResolve
Error E0434: can’t capture dynamic environment in a fn item.
Error E0435: attempt to use a non-constant value in a constant.
Error E0530: X
bindings cannot shadow Y
s.
Fields of BindingShadowsSomethingUnacceptable
Error E0128: generic parameters with a default cannot use forward-declared identifiers.
ParamInTyOfConstParam(Symbol)
ERROR E0770: the type of const parameters must not depend on other generic parameters.
Tuple Fields of ParamInTyOfConstParam
0: Symbol
generic parameters must not be used inside const evaluations.
This error is only emitted when using min_const_generics
.
Error E0735: generic parameters with a default cannot use Self
Error E0767: use of unreachable label
Auto Trait Implementations
impl<'a> RefUnwindSafe for ResolutionError<'a>
impl<'a> !Send for ResolutionError<'a>
impl<'a> !Sync for ResolutionError<'a>
impl<'a> Unpin for ResolutionError<'a>
impl<'a> UnwindSafe for ResolutionError<'a>
Blanket Implementations
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: 88 bytes
Size for each variant:
GenericParamsFromOuterFunction
: 27 bytesNameAlreadyUsedInParameterList
: 15 bytesMethodNotMemberOfTrait
: 39 bytesTypeNotMemberOfTrait
: 39 bytesConstNotMemberOfTrait
: 39 bytesVariableNotBoundInPattern
: 15 bytesVariableBoundWithDifferentMode
: 15 bytesIdentifierBoundMoreThanOnceInParameterList
: 7 bytesIdentifierBoundMoreThanOnceInSamePattern
: 7 bytesUndeclaredLabel
: 23 bytesSelfImportsOnlyAllowedWithin
: 11 bytesSelfImportCanOnlyAppearOnceInTheList
: 0 bytesSelfImportOnlyInImportListWithNonEmptyPrefix
: 0 bytesFailedToResolve
: 87 bytesCannotCaptureDynamicEnvironmentInFnItem
: 0 bytesAttemptToUseNonConstantValueInConstant
: 47 bytesBindingShadowsSomethingUnacceptable
: 79 bytesForwardDeclaredGenericParam
: 0 bytesParamInTyOfConstParam
: 7 bytesParamInNonTrivialAnonConst
: 7 bytesSelfInGenericParamDefault
: 0 bytesUnreachableLabel
: 31 bytes