pub struct WasmSigParameters { /* private fields */ }Expand description
WebAssembly wrapper for SigParameters
Implementations§
Trait Implementations§
Source§impl From<WasmSigParameters> for JsValue
impl From<WasmSigParameters> for JsValue
Source§fn from(value: WasmSigParameters) -> Self
fn from(value: WasmSigParameters) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for WasmSigParameters
impl FromWasmAbi for WasmSigParameters
Source§impl IntoWasmAbi for WasmSigParameters
impl IntoWasmAbi for WasmSigParameters
Source§impl RefFromWasmAbi for WasmSigParameters
impl RefFromWasmAbi for WasmSigParameters
Source§type Anchor = RcRef<WasmSigParameters>
type Anchor = RcRef<WasmSigParameters>
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 TryFromJsValue for WasmSigParameters
impl TryFromJsValue for WasmSigParameters
Source§impl VectorFromWasmAbi for WasmSigParameters
impl VectorFromWasmAbi for WasmSigParameters
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[WasmSigParameters]>
Source§impl VectorIntoWasmAbi for WasmSigParameters
impl VectorIntoWasmAbi for WasmSigParameters
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[WasmSigParameters]>) -> Self::Abi
Source§impl WasmDescribeVector for WasmSigParameters
impl WasmDescribeVector for WasmSigParameters
impl SupportsConstructor for WasmSigParameters
impl SupportsInstanceProperty for WasmSigParameters
impl SupportsStaticProperty for WasmSigParameters
Auto Trait Implementations§
impl Freeze for WasmSigParameters
impl RefUnwindSafe for WasmSigParameters
impl Send for WasmSigParameters
impl Sync for WasmSigParameters
impl Unpin for WasmSigParameters
impl UnwindSafe for WasmSigParameters
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::AbiSource§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.