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