pub struct Weak<S: Stream>(/* private fields */)
where
S::Item: Clone;
Expand description
A weak reference to the source stream. Must be upgraded before being polled. See module level documentation for more details.
Implementations§
Auto Trait Implementations§
impl<S> Freeze for Weak<S>
impl<S> RefUnwindSafe for Weak<S>
impl<S> Send for Weak<S>
impl<S> Sync for Weak<S>
impl<S> Unpin for Weak<S>
impl<S> UnwindSafe for Weak<S>
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