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) -> JsCommunicationBackend
pub fn new(sender: JsCommunicationBackendSender) -> JsCommunicationBackend
Creates a new instance of the JavaScript communication backend.
Trait Implementations§
Source§impl Clone for JsCommunicationBackend
impl Clone for JsCommunicationBackend
Source§fn clone(&self) -> JsCommunicationBackend
fn clone(&self) -> JsCommunicationBackend
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl From<JsCommunicationBackend> for JsValue
impl From<JsCommunicationBackend> for JsValue
Source§fn from(value: JsCommunicationBackend) -> JsValue
fn from(value: JsCommunicationBackend) -> JsValue
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 LongRefFromWasmAbi for JsCommunicationBackend
impl LongRefFromWasmAbi for JsCommunicationBackend
Source§type Anchor = RcRef<JsCommunicationBackend>
type Anchor = RcRef<JsCommunicationBackend>
Same as
RefFromWasmAbi::Anchor
Source§unsafe fn long_ref_from_abi(
js: <JsCommunicationBackend as LongRefFromWasmAbi>::Abi,
) -> <JsCommunicationBackend as LongRefFromWasmAbi>::Anchor
unsafe fn long_ref_from_abi( js: <JsCommunicationBackend as LongRefFromWasmAbi>::Abi, ) -> <JsCommunicationBackend as LongRefFromWasmAbi>::Anchor
Same as
RefFromWasmAbi::ref_from_abi
Source§impl OptionFromWasmAbi for JsCommunicationBackend
impl OptionFromWasmAbi for JsCommunicationBackend
Source§fn is_none(abi: &<JsCommunicationBackend as FromWasmAbi>::Abi) -> bool
fn is_none(abi: &<JsCommunicationBackend as FromWasmAbi>::Abi) -> bool
Tests whether the argument is a “none” instance. If so it will be
deserialized as
None
, and otherwise it will be passed to
FromWasmAbi
.Source§impl OptionIntoWasmAbi for JsCommunicationBackend
impl OptionIntoWasmAbi for JsCommunicationBackend
Source§fn none() -> <JsCommunicationBackend as IntoWasmAbi>::Abi
fn none() -> <JsCommunicationBackend as IntoWasmAbi>::Abi
Returns an ABI instance indicating “none”, which JS will interpret as
the
None
branch of this option. Read moreSource§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§unsafe fn ref_from_abi(
js: <JsCommunicationBackend as RefFromWasmAbi>::Abi,
) -> <JsCommunicationBackend as RefFromWasmAbi>::Anchor
unsafe fn ref_from_abi( js: <JsCommunicationBackend as RefFromWasmAbi>::Abi, ) -> <JsCommunicationBackend as RefFromWasmAbi>::Anchor
Source§impl RefMutFromWasmAbi for JsCommunicationBackend
impl RefMutFromWasmAbi for JsCommunicationBackend
Source§type Anchor = RcRefMut<JsCommunicationBackend>
type Anchor = RcRefMut<JsCommunicationBackend>
Same as
RefFromWasmAbi::Anchor
Source§unsafe fn ref_mut_from_abi(
js: <JsCommunicationBackend as RefMutFromWasmAbi>::Abi,
) -> <JsCommunicationBackend as RefMutFromWasmAbi>::Anchor
unsafe fn ref_mut_from_abi( js: <JsCommunicationBackend as RefMutFromWasmAbi>::Abi, ) -> <JsCommunicationBackend as RefMutFromWasmAbi>::Anchor
Same as
RefFromWasmAbi::ref_from_abi
Source§impl TryFromJsValue for JsCommunicationBackend
impl TryFromJsValue for JsCommunicationBackend
Source§fn try_from_js_value(
value: JsValue,
) -> Result<JsCommunicationBackend, <JsCommunicationBackend as TryFromJsValue>::Error>
fn try_from_js_value( value: JsValue, ) -> Result<JsCommunicationBackend, <JsCommunicationBackend as TryFromJsValue>::Error>
Performs the conversion.
Source§impl VectorFromWasmAbi for JsCommunicationBackend
impl VectorFromWasmAbi for JsCommunicationBackend
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi( js: <JsCommunicationBackend as VectorFromWasmAbi>::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]>, ) -> <JsCommunicationBackend as VectorIntoWasmAbi>::Abi
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,
§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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
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
.