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