Struct workflow_core::sendable::Sendable
source · 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
source§impl<T> FromFd for T
impl<T> FromFd for T
source§impl<T> FromFilelike for T
impl<T> FromFilelike for T
source§fn from_filelike(owned: OwnedFd) -> T
fn from_filelike(owned: OwnedFd) -> T
Constructs a new instance of
Self
from the given filelike object. Read moresource§fn from_into_filelike<Owned>(owned: Owned) -> Twhere
Owned: IntoFilelike,
fn from_into_filelike<Owned>(owned: Owned) -> Twhere
Owned: IntoFilelike,
Constructs a new instance of
Self
from the given filelike object
converted from into_owned
. Read moresource§impl<T> FromSocketlike for T
impl<T> FromSocketlike for T
source§fn from_socketlike(owned: OwnedFd) -> T
fn from_socketlike(owned: OwnedFd) -> T
Constructs a new instance of
Self
from the given socketlike object.source§fn from_into_socketlike<Owned>(owned: Owned) -> Twhere
Owned: IntoSocketlike,
fn from_into_socketlike<Owned>(owned: Owned) -> Twhere
Owned: IntoSocketlike,
Constructs a new instance of
Self
from the given socketlike object
converted from into_owned
.