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§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 VectorIntoJsValue for JsCommunicationBackend
impl VectorIntoJsValue for JsCommunicationBackend
fn vector_into_jsvalue(vector: Box<[JsCommunicationBackend]>) -> JsValue
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 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,
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::Abi
Source§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
.