pub struct ProgressWriter<W: SendStream = SendStream> {
pub inner: W,
/* private fields */
}
Expand description
Wrapper for a [quinn::SendStream
] with additional per request information.
Fields§
§inner: W
The quinn::SendStream to write to
Trait Implementations§
Auto Trait Implementations§
impl<W> Freeze for ProgressWriter<W>where
W: Freeze,
impl<W = SendStream> !RefUnwindSafe for ProgressWriter<W>
impl<W> Send for ProgressWriter<W>
impl<W> Sync for ProgressWriter<W>where
W: Sync,
impl<W> Unpin for ProgressWriter<W>where
W: Unpin,
impl<W = SendStream> !UnwindSafe for ProgressWriter<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