pub struct Stream<R, W> { /* private fields */ }Expand description
A generic sync transport that operates on any BufRead input and Write output.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<R, W> Freeze for Stream<R, W>
impl<R, W> RefUnwindSafe for Stream<R, W>where
R: RefUnwindSafe,
W: RefUnwindSafe,
impl<R, W> Send for Stream<R, W>
impl<R, W> Sync for Stream<R, W>
impl<R, W> Unpin for Stream<R, W>
impl<R, W> UnsafeUnpin for Stream<R, W>where
R: UnsafeUnpin,
W: UnsafeUnpin,
impl<R, W> UnwindSafe for Stream<R, W>where
R: UnwindSafe,
W: UnwindSafe,
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