pub struct Assembled<St: Stream, Wr, F> { /* private fields */ }Expand description
Stream for assembled.
Trait Implementations§
Source§impl<St, Wr, F> FusedStream for Assembled<St, Wr, F>
impl<St, Wr, F> FusedStream for Assembled<St, Wr, F>
Source§fn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns
true if the stream should no longer be polled.Source§impl<St, Wr, F> Stream for Assembled<St, Wr, F>
impl<St, Wr, F> Stream for Assembled<St, Wr, F>
Source§type Item = Result<<Wr as MultipartWrite<<St as Stream>::Item>>::Output, <Wr as MultipartWrite<<St as Stream>::Item>>::Error>
type Item = Result<<Wr as MultipartWrite<<St as Stream>::Item>>::Output, <Wr as MultipartWrite<<St as Stream>::Item>>::Error>
Values yielded by the stream.
impl<'__pin, St: Stream, Wr, F> Unpin for Assembled<St, Wr, F>where
PinnedFieldsOf<__Origin<'__pin, St, Wr, F>>: Unpin,
Auto Trait Implementations§
impl<St, Wr, F> Freeze for Assembled<St, Wr, F>
impl<St, Wr, F> RefUnwindSafe for Assembled<St, Wr, F>
impl<St, Wr, F> Send for Assembled<St, Wr, F>
impl<St, Wr, F> Sync for Assembled<St, Wr, F>
impl<St, Wr, F> UnwindSafe for Assembled<St, Wr, F>
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