You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
infer_outlives_content = lifetime of reference outlives lifetime of borrowed content...
176
+
infer_outlives_bound = lifetime of the source pointer does not outlive lifetime bound of the object type
177
+
infer_fullfill_req_lifetime = the type `{$ty}` does not fulfill the required lifetime
178
+
infer_lf_bound_not_satisfied = lifetime bound not satisfied
179
+
infer_borrowed_too_long = a value of type `{$ty}` is borrowed for too long
180
+
infer_ref_longer_than_data = in type `{$ty}`, reference has a longer lifetime than the data it references
181
+
163
182
infer_mismatched_static_lifetime = incompatible lifetime on type
164
183
infer_does_not_outlive_static_from_impl = ...does not necessarily outlive the static lifetime introduced by the compatible `impl`
165
184
infer_implicit_static_lifetime_note = this has an implicit `'static` lifetime requirement
@@ -308,3 +327,21 @@ infer_ril_introduced_here = `'static` requirement introduced here
308
327
infer_ril_introduced_by = requirement introduced by this return type
309
328
infer_ril_because_of = because of this returned expression
310
329
infer_ril_static_introduced_by = "`'static` lifetime requirement introduced by the return type
330
+
331
+
infer_where_remove = remove the `where` clause
332
+
infer_where_copy_predicates = copy the `where` clause predicates from the trait
333
+
334
+
infer_srs_remove_and_box = consider removing this semicolon and boxing the expressions
335
+
infer_srs_remove = consider removing this semicolon
336
+
infer_srs_add = consider returning the local binding `{$ident}`
337
+
infer_srs_add_one = consider returning one of these bindings
338
+
339
+
infer_await_both_futures = consider `await`ing on both `Future`s
340
+
infer_await_future = consider `await`ing on the `Future`
341
+
infer_await_note = calling an async function returns a future
342
+
343
+
infer_prlf_defined_with_sub = the lifetime `{$sub_symbol}` defined here...
344
+
infer_prlf_defined_without_sub = the lifetime defined here...
345
+
infer_prlf_must_oultive_with_sup = ...must outlive the lifetime `{$sup_symbol}` defined here
346
+
infer_prlf_must_oultive_without_sup = ...must outlive the lifetime defined here
347
+
infer_prlf_known_limitation = this is a known limitation that will be removed in the future (see issue #100013 <https://github.com/rust-lang/rust/issues/100013> for more information)
0 commit comments