pub trait AsyncReadExact:
Unpin
+ Sync
+ Send {
// Required method
fn read_exact<'life0, 'life1, 'async_trait>(
&'life0 mut self,
to: &'life1 mut [u8],
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}