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
The problem with this error stems from the inability to find the UnixListenerclause
CI error log
error[E0432]: unresolved import `super::UnixListener`
--> summer-boot/src/tcp/parsed.rs:2:5
|
2 | use super::UnixListener;
| ^^^^^^^^^^^^^^^^^^^ no `UnixListener` in `tcp`
|
help: a similar name exists in the module
|
2 | use super::ToListener;
| ~~~~~~~~~~
help: consider importing one of these items instead
|
2 | use async_std::os::unix::net::UnixListener;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 | use std::os::unix::net::UnixListener;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 | use tokio::net::UnixListener;
| ~~~~~~~~~~~~~~~~~~~~~~~~
error[E0432]: unresolved import `super::UnixListener`
--> summer-boot/src/tcp/to_listener_impls.rs:2:5
|
2 | use super::UnixListener;
| ^^^^^^^^^^^^^^^^^^^ no `UnixListener` in `tcp`
|
help: a similar name exists in the module
The text was updated successfully, but these errors were encountered:
The problem with this error stems from the inability to find the
UnixListener
clauseCI error log
The text was updated successfully, but these errors were encountered: