pub fn new_s3_client<T, S, R>(
    send: S,
    recv: R,
    srv_id_pub_key: BufReadSized<32>
) -> impl Future<Output = Result<(S3Sender<T>, S3Receiver<T>), OneErr>> + Send + 'static
where T: 'static + Serialize + for<'de> Deserialize<'de> + Send, S: 'static + AsyncWrite + Send + Unpin, R: 'static + AsyncRead + Send + Unpin,
Expand description

Create a new S3 client side pair.