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