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