pub struct JsReceiveError {
pub crypto_error: JsValue,
pub communication_error: JsValue,
}
Fields§
§crypto_error: JsValue
§communication_error: JsValue
Trait Implementations§
Source§impl From<JsReceiveError> for JsValue
impl From<JsReceiveError> for JsValue
Source§fn from(value: JsReceiveError) -> Self
fn from(value: JsReceiveError) -> Self
Converts to this type from the input type.
Source§impl From<ReceiveError<JsValue, JsValue>> for JsReceiveError
impl From<ReceiveError<JsValue, JsValue>> for JsReceiveError
Source§impl FromWasmAbi for JsReceiveError
impl FromWasmAbi for JsReceiveError
Source§impl IntoWasmAbi for JsReceiveError
impl IntoWasmAbi for JsReceiveError
Source§impl LongRefFromWasmAbi for JsReceiveError
impl LongRefFromWasmAbi for JsReceiveError
Source§impl OptionFromWasmAbi for JsReceiveError
impl OptionFromWasmAbi for JsReceiveError
Source§impl OptionIntoWasmAbi for JsReceiveError
impl OptionIntoWasmAbi for JsReceiveError
Source§impl RefFromWasmAbi for JsReceiveError
impl RefFromWasmAbi for JsReceiveError
Source§type Anchor = RcRef<JsReceiveError>
type Anchor = RcRef<JsReceiveError>
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 RefMutFromWasmAbi for JsReceiveError
impl RefMutFromWasmAbi for JsReceiveError
Source§impl TryFromJsValue for JsReceiveError
impl TryFromJsValue for JsReceiveError
Source§impl VectorFromWasmAbi for JsReceiveError
impl VectorFromWasmAbi for JsReceiveError
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[JsReceiveError]>
Source§impl VectorIntoJsValue for JsReceiveError
impl VectorIntoJsValue for JsReceiveError
fn vector_into_jsvalue(vector: Box<[JsReceiveError]>) -> JsValue
Source§impl VectorIntoWasmAbi for JsReceiveError
impl VectorIntoWasmAbi for JsReceiveError
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[JsReceiveError]>) -> Self::Abi
Source§impl WasmDescribe for JsReceiveError
impl WasmDescribe for JsReceiveError
impl SupportsConstructor for JsReceiveError
impl SupportsInstanceProperty for JsReceiveError
impl SupportsStaticProperty for JsReceiveError
Auto Trait Implementations§
impl Freeze for JsReceiveError
impl RefUnwindSafe for JsReceiveError
impl !Send for JsReceiveError
impl !Sync for JsReceiveError
impl Unpin for JsReceiveError
impl UnwindSafe for JsReceiveError
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> 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
.