pub trait IntoRequestBytes {
    fn into_request_bytes<'async_trait>(
        self
    ) -> Pin<Box<dyn Future<Output = Result<Bytes, Box<dyn Error + Send + Sync>>> + Send + 'async_trait>>
    where
        Self: 'async_trait
; }

Required Methods

Implementations on Foreign Types

Implementors