pub struct OutStream<W: AsyncWrite + Unpin> { /* private fields */ }Expand description
Implements a data stream from the FastCGI application to the web-server.
The maximum chunk size is 64k. The calls made by this interface may block if the web-server is not receiving the data fast enough. Therefore all calls are implemented as async functions.
Implementations§
Source§impl<W: AsyncWrite + Unpin> OutStream<W>
impl<W: AsyncWrite + Unpin> OutStream<W>
Auto Trait Implementations§
impl<W> Freeze for OutStream<W>
impl<W> !RefUnwindSafe for OutStream<W>
impl<W> Send for OutStream<W>where
W: Send,
impl<W> Sync for OutStream<W>where
W: Send,
impl<W> Unpin for OutStream<W>
impl<W> !UnwindSafe for OutStream<W>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more