2023-06-28 18:08:21 +00:00
|
|
|
trait_selection_adjust_signature_borrow = consider adjusting the signature so it borrows its {$len ->
|
|
|
|
[one] argument
|
|
|
|
*[other] arguments
|
|
|
|
}
|
|
|
|
|
|
|
|
trait_selection_adjust_signature_remove_borrow = consider adjusting the signature so it does not borrow its {$len ->
|
|
|
|
[one] argument
|
|
|
|
*[other] arguments
|
|
|
|
}
|
|
|
|
|
2023-08-06 14:00:12 +00:00
|
|
|
trait_selection_closure_fn_mut_label = closure is `FnMut` because it mutates the variable `{$place}` here
|
|
|
|
|
|
|
|
trait_selection_closure_fn_once_label = closure is `FnOnce` because it moves the variable `{$place}` out of its environment
|
|
|
|
|
|
|
|
trait_selection_closure_kind_mismatch = expected a closure that implements the `{$expected}` trait, but this closure only implements `{$found}`
|
|
|
|
.label = this closure implements `{$found}`, not `{$expected}`
|
|
|
|
|
|
|
|
trait_selection_closure_kind_requirement = the requirement to implement `{$expected}` derives from here
|
|
|
|
|
2022-08-26 18:08:58 +00:00
|
|
|
trait_selection_dump_vtable_entries = vtable entries for `{$trait_ref}`: {$entries}
|
|
|
|
|
|
|
|
trait_selection_empty_on_clause_in_rustc_on_unimplemented = empty `on`-clause in `#[rustc_on_unimplemented]`
|
|
|
|
.label = empty on-clause here
|
|
|
|
|
2023-11-09 07:33:21 +00:00
|
|
|
trait_selection_ignored_diagnostic_option = `{$option_name}` is ignored due to previous definition of `{$option_name}`
|
|
|
|
.other_label = `{$option_name}` is first declared here
|
|
|
|
.label = `{$option_name}` is already declared here
|
|
|
|
|
2023-03-21 00:46:52 +00:00
|
|
|
trait_selection_inherent_projection_normalization_overflow = overflow evaluating associated type `{$ty}`
|
2023-05-23 01:51:25 +00:00
|
|
|
|
2022-08-26 18:08:58 +00:00
|
|
|
trait_selection_invalid_on_clause_in_rustc_on_unimplemented = invalid `on`-clause in `#[rustc_on_unimplemented]`
|
|
|
|
.label = invalid on-clause here
|
|
|
|
|
2023-06-02 11:55:46 +00:00
|
|
|
trait_selection_malformed_on_unimplemented_attr = malformed `on_unimplemented` attribute
|
2023-10-19 06:44:15 +00:00
|
|
|
.help = only `message`, `note` and `label` are allowed as options
|
|
|
|
.label = invalid option found here
|
|
|
|
|
|
|
|
trait_selection_missing_options_for_on_unimplemented_attr = missing options for `on_unimplemented` attribute
|
|
|
|
.help = at least one of the `message`, `note` and `label` options are expected
|
2023-06-02 11:55:46 +00:00
|
|
|
|
2022-08-26 18:08:58 +00:00
|
|
|
trait_selection_negative_positive_conflict = found both positive and negative implementation of trait `{$trait_desc}`{$self_desc ->
|
|
|
|
[none] {""}
|
|
|
|
*[default] {" "}for type `{$self_desc}`
|
|
|
|
}:
|
|
|
|
.negative_implementation_here = negative implementation here
|
|
|
|
.negative_implementation_in_crate = negative implementation in crate `{$negative_impl_cname}`
|
|
|
|
.positive_implementation_here = positive implementation here
|
|
|
|
.positive_implementation_in_crate = positive implementation in crate `{$positive_impl_cname}`
|
2023-03-21 00:46:52 +00:00
|
|
|
|
|
|
|
trait_selection_no_value_in_rustc_on_unimplemented = this attribute must have a valid value
|
|
|
|
.label = expected value here
|
|
|
|
.note = eg `#[rustc_on_unimplemented(message="foo")]`
|
2023-05-23 01:51:25 +00:00
|
|
|
|
2023-09-10 03:33:07 +00:00
|
|
|
trait_selection_trait_has_no_impls = this trait has no implementations, consider adding one
|
|
|
|
|
2023-06-30 13:54:15 +00:00
|
|
|
trait_selection_ty_alias_overflow = in case this is a recursive type alias, consider using a struct, enum, or union instead
|
2023-03-21 00:46:52 +00:00
|
|
|
trait_selection_unable_to_construct_constant_value = unable to construct a constant value for the unevaluated constant {$unevaluated}
|