Struct JsCommunicationBackend
pub struct JsCommunicationBackend {
sender: JsCommunicationBackendSender,
receive_rx: Receiver<IncomingMessage>,
receive_tx: Sender<IncomingMessage>,
}
Fields§
§sender: JsCommunicationBackendSender
§receive_rx: Receiver<IncomingMessage>
§receive_tx: Sender<IncomingMessage>
Implementations§
§impl JsCommunicationBackend
impl JsCommunicationBackend
pub fn new(sender: JsCommunicationBackendSender) -> JsCommunicationBackend
pub fn deliver_message(&self, message: IncomingMessage) -> Result<(), JsValue>
pub fn deliver_message(&self, message: IncomingMessage) -> Result<(), JsValue>
JavaScript function to provide a received message to the backend/IPC framework.
Trait Implementations§
§impl From<JsCommunicationBackend> for JsValue
impl From<JsCommunicationBackend> for JsValue
§fn from(value: JsCommunicationBackend) -> JsValue
fn from(value: JsCommunicationBackend) -> JsValue
Converts to this type from the input type.
§impl FromWasmAbi for JsCommunicationBackend
impl FromWasmAbi for JsCommunicationBackend
§impl IntoWasmAbi for JsCommunicationBackend
impl IntoWasmAbi for JsCommunicationBackend
§impl LongRefFromWasmAbi for JsCommunicationBackend
impl LongRefFromWasmAbi for JsCommunicationBackend
§type Anchor = RcRef<JsCommunicationBackend>
type Anchor = RcRef<JsCommunicationBackend>
Same as
RefFromWasmAbi::Anchor
§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
§impl OptionFromWasmAbi for JsCommunicationBackend
impl OptionFromWasmAbi for JsCommunicationBackend
§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
.§impl OptionIntoWasmAbi for JsCommunicationBackend
impl OptionIntoWasmAbi for JsCommunicationBackend
§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 more§impl RefFromWasmAbi for JsCommunicationBackend
impl RefFromWasmAbi for JsCommunicationBackend
§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.§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
§impl RefMutFromWasmAbi for JsCommunicationBackend
impl RefMutFromWasmAbi for JsCommunicationBackend
§type Anchor = RcRefMut<JsCommunicationBackend>
type Anchor = RcRefMut<JsCommunicationBackend>
Same as
RefFromWasmAbi::Anchor
§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
§impl TryFromJsValue for JsCommunicationBackend
impl TryFromJsValue for JsCommunicationBackend
§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.
§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]>
§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
§impl<T> CompatExt for T
impl<T> CompatExt for T
§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
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
.