pub struct UnboundedSender<Item>(/* private fields */)
where
Item: ConditionallySendSync;
Expand description
A Unbounded Sender that works the same way in single-threaded WebAssembly as multi-threaded native.
Implementations§
Trait Implementations§
Source§impl<Item> Clone for UnboundedSender<Item>where
Item: ConditionallySendSync,
impl<Item> Clone for UnboundedSender<Item>where
Item: ConditionallySendSync,
Auto Trait Implementations§
impl<Item> Freeze for UnboundedSender<Item>
impl<Item> RefUnwindSafe for UnboundedSender<Item>
impl<Item> Send for UnboundedSender<Item>
impl<Item> Sync for UnboundedSender<Item>
impl<Item> Unpin for UnboundedSender<Item>
impl<Item> UnwindSafe for UnboundedSender<Item>
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