blob: 418dd9ea6b8460d53008cf73531dd8edf1c66b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0599]: no function or associated item named `new` found for struct `TcpStream` in the current scope
--> $DIR/fn-new-doesnt-exist.rs:4:28
|
LL | let stream = TcpStream::new();
| ^^^ function or associated item not found in `TcpStream`
|
note: if you're trying to build a new `TcpStream` consider using one of the following associated functions:
TcpStream::connect
TcpStream::connect_timeout
--> $SRC_DIR/std/src/net/tcp.rs:LL:COL
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0599`.
|