pub struct FloatArray(/* private fields */);
Implementations§
Source§impl FloatArray
impl FloatArray
Trait Implementations§
Source§impl From<FloatArray> for JsValue
impl From<FloatArray> for JsValue
Source§fn from(value: FloatArray) -> Self
fn from(value: FloatArray) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for FloatArray
impl FromWasmAbi for FloatArray
Source§impl IntoWasmAbi for FloatArray
impl IntoWasmAbi for FloatArray
Source§impl LongRefFromWasmAbi for FloatArray
impl LongRefFromWasmAbi for FloatArray
Source§impl OptionFromWasmAbi for FloatArray
impl OptionFromWasmAbi for FloatArray
Source§impl OptionIntoWasmAbi for FloatArray
impl OptionIntoWasmAbi for FloatArray
Source§impl RefFromWasmAbi for FloatArray
impl RefFromWasmAbi for FloatArray
Source§type Anchor = RcRef<FloatArray>
type Anchor = RcRef<FloatArray>
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 FloatArray
impl RefMutFromWasmAbi for FloatArray
Source§impl TryFromJsValue for FloatArray
impl TryFromJsValue for FloatArray
Source§impl VectorFromWasmAbi for FloatArray
impl VectorFromWasmAbi for FloatArray
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[FloatArray]>
Source§impl VectorIntoJsValue for FloatArray
impl VectorIntoJsValue for FloatArray
fn vector_into_jsvalue(vector: Box<[FloatArray]>) -> JsValue
Source§impl VectorIntoWasmAbi for FloatArray
impl VectorIntoWasmAbi for FloatArray
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[FloatArray]>) -> Self::Abi
Source§impl WasmDescribeVector for FloatArray
impl WasmDescribeVector for FloatArray
impl SupportsConstructor for FloatArray
impl SupportsInstanceProperty for FloatArray
impl SupportsStaticProperty for FloatArray
Auto Trait Implementations§
impl Freeze for FloatArray
impl RefUnwindSafe for FloatArray
impl Send for FloatArray
impl Sync for FloatArray
impl Unpin for FloatArray
impl UnwindSafe for FloatArray
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§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::Abi
Source§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
.