pub struct WasmNurbsCurve { /* private fields */ }Implementations§
Trait Implementations§
Source§impl From<WasmNurbsCurve> for JsValue
impl From<WasmNurbsCurve> for JsValue
Source§fn from(value: WasmNurbsCurve) -> Self
fn from(value: WasmNurbsCurve) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for WasmNurbsCurve
impl FromWasmAbi for WasmNurbsCurve
Source§impl IntoWasmAbi for WasmNurbsCurve
impl IntoWasmAbi for WasmNurbsCurve
Source§impl LongRefFromWasmAbi for WasmNurbsCurve
impl LongRefFromWasmAbi for WasmNurbsCurve
Source§type Abi = WasmPtr<WasmRefCell<WasmNurbsCurve>>
type Abi = WasmPtr<WasmRefCell<WasmNurbsCurve>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRef<WasmNurbsCurve>
type Anchor = RcRef<WasmNurbsCurve>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiSource§impl OptionFromWasmAbi for WasmNurbsCurve
impl OptionFromWasmAbi for WasmNurbsCurve
Source§impl OptionIntoWasmAbi for WasmNurbsCurve
impl OptionIntoWasmAbi for WasmNurbsCurve
Source§impl RefFromWasmAbi for WasmNurbsCurve
impl RefFromWasmAbi for WasmNurbsCurve
Source§type Abi = WasmPtr<WasmRefCell<WasmNurbsCurve>>
type Abi = WasmPtr<WasmRefCell<WasmNurbsCurve>>
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = RcRef<WasmNurbsCurve>
type Anchor = RcRef<WasmNurbsCurve>
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 WasmNurbsCurve
impl RefMutFromWasmAbi for WasmNurbsCurve
Source§type Abi = WasmPtr<WasmRefCell<WasmNurbsCurve>>
type Abi = WasmPtr<WasmRefCell<WasmNurbsCurve>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRefMut<WasmNurbsCurve>
type Anchor = RcRefMut<WasmNurbsCurve>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiimpl SupportsConstructor for WasmNurbsCurve
impl SupportsInstanceProperty for WasmNurbsCurve
impl SupportsStaticProperty for WasmNurbsCurve
Source§impl TryFromJsValue for WasmNurbsCurve
impl TryFromJsValue for WasmNurbsCurve
Source§impl VectorFromWasmAbi for WasmNurbsCurve
impl VectorFromWasmAbi for WasmNurbsCurve
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[WasmNurbsCurve]>
Source§impl VectorIntoWasmAbi for WasmNurbsCurve
impl VectorIntoWasmAbi for WasmNurbsCurve
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[WasmNurbsCurve]>) -> Self::Abi
Source§impl WasmDescribeVector for WasmNurbsCurve
impl WasmDescribeVector for WasmNurbsCurve
Auto Trait Implementations§
impl !Freeze for WasmNurbsCurve
impl !RefUnwindSafe for WasmNurbsCurve
impl !Sync for WasmNurbsCurve
impl Send for WasmNurbsCurve
impl Unpin for WasmNurbsCurve
impl UnsafeUnpin for WasmNurbsCurve
impl UnwindSafe for WasmNurbsCurve
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.