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