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