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