pub struct Sendable<T>(pub T);
Expand description
Sendable wrapper for JS primitives.
Wrapping any JS primitive (JsValue, JsString, JsArray, JsObject, etc.) in
Sendable<T>
wraps the value with the Send marker, making it transportable
across “thread boundaries”. In reality, this allows JS primitives to be
used safely within a single-threaded WASM async environment (browser).
Tuple Fields§
§0: T
Implementations§
Trait Implementations§
impl<T> Send for Sendable<T>
impl<T> Sync for Sendable<T>
Auto Trait Implementations§
impl<T> Freeze for Sendable<T>where
T: Freeze,
impl<T> RefUnwindSafe for Sendable<T>where
T: RefUnwindSafe,
impl<T> Unpin for Sendable<T>where
T: Unpin,
impl<T> UnwindSafe for Sendable<T>where
T: 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