Trait UnsizedBodyStream

Source
pub trait UnsizedBodyStream:
    AsyncRead
    + Send
    + 'static { }
Available on crate feature async only.
Expand description

Trait for unsized async body streams that do not support seeking.

Implementors§

Source§

impl<S: AsyncRead + Send + 'static + ?Sized> UnsizedBodyStream for S