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
use a concrete type such as `self`, `&self`, `&mut self`, `self: Box<Self>`, `self: Rc<Self>`, `self: Arc<Self>`, or `self: Pin<P>` (where P is one of the previous types except `Self`)
.note = type of `self` must be `Self` or a type that dereferences to it
244
+
.note = type of `self` must be `Self` or some type implementing `Receiver`
245
245
246
246
hir_analysis_invalid_receiver_ty_help =
247
-
consider changing to `self`, `&self`, `&mut self`, `self: Box<Self>`, `self: Rc<Self>`, `self: Arc<Self>`, or `self: Pin<P>` (where P is one of the previous types except `Self`)
247
+
consider changing to `self`, `&self`, `&mut self`, or a type implementing `Receiver` such as `self: Box<Self>`, `self: Rc<Self>`, or `self: Arc<Self>`
248
248
249
249
hir_analysis_invalid_union_field =
250
250
field must implement `Copy` or be wrapped in `ManuallyDrop<...>` to be used in a union
0 commit comments