mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
20 lines
779 B
Plaintext
20 lines
779 B
Plaintext
error[E0277]: the trait bound `NoToSocketAddrs: ToSocketAddrs` is not satisfied
|
|
--> $DIR/issue-39029.rs:16:38
|
|
|
|
|
LL | let _errors = TcpListener::bind(&bad);
|
|
| ----------------- ^^^ the trait `ToSocketAddrs` is not implemented for `NoToSocketAddrs`
|
|
| |
|
|
| required by a bound introduced by this call
|
|
|
|
|
= note: required for `&NoToSocketAddrs` to implement `ToSocketAddrs`
|
|
note: required by a bound in `TcpListener::bind`
|
|
--> $SRC_DIR/std/src/net/tcp.rs:LL:COL
|
|
help: consider dereferencing here
|
|
|
|
|
LL | let _errors = TcpListener::bind(&*bad);
|
|
| +
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|