pub struct VecDataBlockFLOAT64(/* private fields */);
Implementations§
Trait Implementations§
Source§impl From<(VecDataBlock<f64>, Option<String>)> for VecDataBlockFLOAT64
impl From<(VecDataBlock<f64>, Option<String>)> for VecDataBlockFLOAT64
Source§impl From<VecDataBlock<f64>> for VecDataBlockFLOAT64
impl From<VecDataBlock<f64>> for VecDataBlockFLOAT64
Source§fn from(block: VecDataBlock<f64>) -> Self
fn from(block: VecDataBlock<f64>) -> Self
Converts to this type from the input type.
Source§impl From<VecDataBlockFLOAT64> for JsValue
impl From<VecDataBlockFLOAT64> for JsValue
Source§fn from(value: VecDataBlockFLOAT64) -> Self
fn from(value: VecDataBlockFLOAT64) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for VecDataBlockFLOAT64
impl FromWasmAbi for VecDataBlockFLOAT64
Source§impl IntoWasmAbi for VecDataBlockFLOAT64
impl IntoWasmAbi for VecDataBlockFLOAT64
Source§impl RefFromWasmAbi for VecDataBlockFLOAT64
impl RefFromWasmAbi for VecDataBlockFLOAT64
Source§type Anchor = RcRef<VecDataBlockFLOAT64>
type Anchor = RcRef<VecDataBlockFLOAT64>
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 VecDataBlockFLOAT64
impl TryFromJsValue for VecDataBlockFLOAT64
Source§impl VectorFromWasmAbi for VecDataBlockFLOAT64
impl VectorFromWasmAbi for VecDataBlockFLOAT64
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[VecDataBlockFLOAT64]>
Source§impl VectorIntoJsValue for VecDataBlockFLOAT64
impl VectorIntoJsValue for VecDataBlockFLOAT64
fn vector_into_jsvalue(vector: Box<[VecDataBlockFLOAT64]>) -> JsValue
Source§impl VectorIntoWasmAbi for VecDataBlockFLOAT64
impl VectorIntoWasmAbi for VecDataBlockFLOAT64
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[VecDataBlockFLOAT64]>) -> Self::Abi
Source§impl WasmDescribeVector for VecDataBlockFLOAT64
impl WasmDescribeVector for VecDataBlockFLOAT64
impl SupportsConstructor for VecDataBlockFLOAT64
impl SupportsInstanceProperty for VecDataBlockFLOAT64
impl SupportsStaticProperty for VecDataBlockFLOAT64
Auto Trait Implementations§
impl Freeze for VecDataBlockFLOAT64
impl RefUnwindSafe for VecDataBlockFLOAT64
impl Send for VecDataBlockFLOAT64
impl Sync for VecDataBlockFLOAT64
impl Unpin for VecDataBlockFLOAT64
impl UnwindSafe for VecDataBlockFLOAT64
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
.