Skip to main content

UnsizedBodyStream

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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