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> FromFilelike for Twhere
T: From<OwnedHandle>,
impl<T> FromFilelike for Twhere
T: From<OwnedHandle>,
source§fn from_filelike(owned: OwnedHandle) -> T
fn from_filelike(owned: OwnedHandle) -> 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> FromHandle for Twhere
T: From<OwnedHandle>,
impl<T> FromHandle for Twhere
T: From<OwnedHandle>,
source§fn from_handle(owned_handle: OwnedHandle) -> T
fn from_handle(owned_handle: OwnedHandle) -> T
👎Deprecated since 1.0.0:
FromHandle::from_handle
is replaced by From<OwnedHandle>::from
Constructs a new instance of
Self
from the given handle. Read moresource§fn from_into_handle<Owned>(into_owned: Owned) -> Self
fn from_into_handle<Owned>(into_owned: Owned) -> Self
source§impl<T> FromSocket for Twhere
T: From<OwnedSocket>,
impl<T> FromSocket for Twhere
T: From<OwnedSocket>,
source§fn from_socket(owned_socket: OwnedSocket) -> T
fn from_socket(owned_socket: OwnedSocket) -> T
👎Deprecated since 1.0.0:
FromSocket::from_socket
is replaced by From<OwnedSocket>::from
Constructs a new instance of
Self
from the given socket.source§fn from_into_socket<Owned>(into_owned: Owned) -> Self
fn from_into_socket<Owned>(into_owned: Owned) -> Self
Constructs a new instance of
Self
from the given socket converted
from into_owned
.source§impl<T> FromSocketlike for Twhere
T: From<OwnedSocket>,
impl<T> FromSocketlike for Twhere
T: From<OwnedSocket>,
source§fn from_socketlike(owned: OwnedSocket) -> T
fn from_socketlike(owned: OwnedSocket) -> 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
.