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