Trait SizedBodyStream

Source
pub trait SizedBodyStream:
    Read
    + Seek
    + Send
    + 'static { }
Available on crate feature blocking only.
Expand description

Trait for seekable blocking body streams with a known size.

Implementors§

Source§

impl<S: Read + Seek + Send + 'static + ?Sized> SizedBodyStream for S