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