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> 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
§impl<T> FromFd for Twhere
T: From<OwnedFd>,
impl<T> FromFd for Twhere T: From<OwnedFd>,
§impl<T> FromFilelike for Twhere
T: From<OwnedFd>,
impl<T> FromFilelike for Twhere T: From<OwnedFd>,
§fn from_filelike(owned: OwnedFd) -> T
fn from_filelike(owned: OwnedFd) -> T
Constructs a new instance of
Self
from the given filelike object. Read more§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 more§impl<T> FromSocketlike for Twhere
T: From<OwnedFd>,
impl<T> FromSocketlike for Twhere T: From<OwnedFd>,
§fn from_socketlike(owned: OwnedFd) -> T
fn from_socketlike(owned: OwnedFd) -> T
Constructs a new instance of
Self
from the given socketlike object.§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
.