MCPcopy Create free account
hub / github.com/Hexilee/async-postgres / AsyncReadWriter

Interface AsyncReadWriter

src/socket.rs:8–8  ·  view source on GitHub ↗

A alias for 'static + Unpin + Send + Read + Write

Source from the content-addressed store, hash-verified

6
7/// A alias for 'static + Unpin + Send + Read + Write
8pub trait AsyncReadWriter: 'static + Unpin + Send + Read + Write {}
9
10impl<T> AsyncReadWriter for T where T: 'static + Unpin + Send + Read + Write {}
11

Callers

nothing calls this directly

Implementers 1

socket.rssrc/socket.rs

Calls

no outgoing calls

Tested by

no test coverage detected