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
warning: missing documentation for a method
--> src/lib.rs:1102:1
|
1102 | / easy_wrapper! {
1103 | | /// A future returned by [`Receiver::recv()`].
1104 | | #[derive(Debug)]
1105 | | #[must_use = "futures do nothing unless you `.await` or poll them"]
1106 | | pub struct Recv<'a, T>(RecvInner<'a, T> => Result<T, RecvError>);
1107 | | pub(crate) wait();
1108 | | }
| |_^
|
= note: this warning originates in the macro `$crate::__pin_project_struct_make_proj_method` which comes from the expansion of the macro `easy_wrapper` (in Nightly builds, run with -Z macro-backtrace for more info)
It looks like this comes from pin_project_lite, but I'm not sure from where, exactly. Since this issue hasn't been observed in other crates that use pin_project_lite I don't think it's an issue with that crate.
The text was updated successfully, but these errors were encountered:
It looks like this comes from
pin_project_lite
, but I'm not sure from where, exactly. Since this issue hasn't been observed in other crates that usepin_project_lite
I don't think it's an issue with that crate.The text was updated successfully, but these errors were encountered: