pub struct JsCommunicationBackend {
sender: Arc<ThreadBoundRunner<JsCommunicationBackendSender>>,
receive_rx: Receiver<IncomingMessage>,
receive_tx: Sender<IncomingMessage>,
}Expand description
JavaScript implementation of the CommunicationBackend trait for IPC communication.
Fields§
§sender: Arc<ThreadBoundRunner<JsCommunicationBackendSender>>§receive_rx: Receiver<IncomingMessage>§receive_tx: Sender<IncomingMessage>Implementations§
Source§impl JsCommunicationBackend
impl JsCommunicationBackend
Sourcepub fn new(sender: JsCommunicationBackendSender) -> Self
pub fn new(sender: JsCommunicationBackendSender) -> Self
Creates a new instance of the JavaScript communication backend.
Trait Implementations§
Source§impl Clone for JsCommunicationBackend
impl Clone for JsCommunicationBackend
Source§impl CommunicationBackend for JsCommunicationBackend
impl CommunicationBackend for JsCommunicationBackend
Source§type SendError = WasmCommunicationError
type SendError = WasmCommunicationError
Error returned by
send, classified via IpcErrorKind.Source§type Receiver = RwLock<Receiver<IncomingMessage>>
type Receiver = RwLock<Receiver<IncomingMessage>>
Receiver type returned by
subscribe.Source§impl From<JsCommunicationBackend> for JsValue
impl From<JsCommunicationBackend> for JsValue
Source§fn from(value: JsCommunicationBackend) -> Self
fn from(value: JsCommunicationBackend) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for JsCommunicationBackend
impl FromWasmAbi for JsCommunicationBackend
Source§impl IntoWasmAbi for JsCommunicationBackend
impl IntoWasmAbi for JsCommunicationBackend
Source§impl RefFromWasmAbi for JsCommunicationBackend
impl RefFromWasmAbi for JsCommunicationBackend
Source§type Anchor = RcRef<JsCommunicationBackend>
type Anchor = RcRef<JsCommunicationBackend>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl VectorFromWasmAbi for JsCommunicationBackend
impl VectorFromWasmAbi for JsCommunicationBackend
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[JsCommunicationBackend]>
Source§impl VectorIntoWasmAbi for JsCommunicationBackend
impl VectorIntoWasmAbi for JsCommunicationBackend
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[JsCommunicationBackend]>) -> Self::Abi
impl SupportsConstructor for JsCommunicationBackend
impl SupportsInstanceProperty for JsCommunicationBackend
impl SupportsStaticProperty for JsCommunicationBackend
Auto Trait Implementations§
impl Freeze for JsCommunicationBackend
impl RefUnwindSafe for JsCommunicationBackend
impl Send for JsCommunicationBackend
impl Sync for JsCommunicationBackend
impl Unpin for JsCommunicationBackend
impl UnsafeUnpin for JsCommunicationBackend
impl UnwindSafe for JsCommunicationBackend
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<> Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.