pub struct LanguageList(/* private fields */);
Implementations§
Source§impl LanguageList
impl LanguageList
Trait Implementations§
Source§impl AsRef<[Language]> for LanguageList
impl AsRef<[Language]> for LanguageList
Source§impl Clone for LanguageList
impl Clone for LanguageList
Source§fn clone(&self) -> LanguageList
fn clone(&self) -> LanguageList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LanguageList
impl Debug for LanguageList
Source§impl From<LanguageList> for JsValue
impl From<LanguageList> for JsValue
Source§fn from(value: LanguageList) -> Self
fn from(value: LanguageList) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for LanguageList
impl FromWasmAbi for LanguageList
Source§impl IntoWasmAbi for LanguageList
impl IntoWasmAbi for LanguageList
Source§impl LongRefFromWasmAbi for LanguageList
impl LongRefFromWasmAbi for LanguageList
Source§impl OptionFromWasmAbi for LanguageList
impl OptionFromWasmAbi for LanguageList
Source§impl OptionIntoWasmAbi for LanguageList
impl OptionIntoWasmAbi for LanguageList
Source§impl RefFromWasmAbi for LanguageList
impl RefFromWasmAbi for LanguageList
Source§type Anchor = RcRef<LanguageList>
type Anchor = RcRef<LanguageList>
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 LanguageList
impl RefMutFromWasmAbi for LanguageList
Source§impl TryFromJsValue for LanguageList
impl TryFromJsValue for LanguageList
Source§impl VectorFromWasmAbi for LanguageList
impl VectorFromWasmAbi for LanguageList
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[LanguageList]>
Source§impl VectorIntoJsValue for LanguageList
impl VectorIntoJsValue for LanguageList
fn vector_into_jsvalue(vector: Box<[LanguageList]>) -> JsValue
Source§impl VectorIntoWasmAbi for LanguageList
impl VectorIntoWasmAbi for LanguageList
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[LanguageList]>) -> Self::Abi
Source§impl WasmDescribeVector for LanguageList
impl WasmDescribeVector for LanguageList
impl SupportsConstructor for LanguageList
impl SupportsInstanceProperty for LanguageList
impl SupportsStaticProperty for LanguageList
Auto Trait Implementations§
impl Freeze for LanguageList
impl RefUnwindSafe for LanguageList
impl Send for LanguageList
impl Sync for LanguageList
impl Unpin for LanguageList
impl UnwindSafe for LanguageList
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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
.