pub trait AsyncReadWrite:
AsyncRead
+ AsyncWrite
+ Unpin
+ 'static {
// Provided method
fn is_send_sync(&self)
where Self: Send + Sync { ... }
}Provided Methods§
fn is_send_sync(&self)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".