pub trait AsyncSocket: AsyncRead + AsyncWrite + Debug + Unpin + Send + 'static { }
Expand description

Type alias for necessary socket async traits.

Type alias exists to avoid repetition of traits in function signatures.

This type cannot be implemented directly, and there’s no need to.

Implementors

Auto-implement for all socket types.