sqlx/sqlx-core/src/net.rs
Ryan Leckey 6c8d68e9d0
refactor: marker traits for non-blocking <Async> vs <runtime::Blocking>
- enforce compile-time errors if you try to block on an async-only runtime
   or await a blocking runtime

 - remove viral HRTB for Streams

 - support UNIX streams
2021-01-10 19:23:04 -08:00

4 lines
37 B
Rust

mod stream;
pub use stream::Stream;