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
Currently TcpStream only supports blocking read, but since the underlying implementation uses libc, it should be possible to support nonblocking read as well.
The text was updated successfully, but these errors were encountered:
[`type_id_on_box`]: lint on any `Box<dyn _>`
Closesrust-lang#11349.
It now not only lints when calling `.type_id()` on the type `Box<dyn Any>`, but also on any `Box<dyn Trait>` where `Trait` is a subtrait of `Any`
changelog: FN: [`type_id_on_box`]: lint if `Any` is a sub trait
Currently TcpStream only supports blocking read, but since the underlying implementation uses libc, it should be possible to support nonblocking read as well.
The text was updated successfully, but these errors were encountered: