#[non_exhaustive]pub enum LocaleMatcher {
Lookup = 0,
BestFit = 1,
}Expand description
Locale matching algorithm for Intl constructors.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Source§impl LocaleMatcher
impl LocaleMatcher
pub fn from_js_value(obj: &JsValue) -> Option<LocaleMatcher>
Trait Implementations§
Source§impl Clone for LocaleMatcher
impl Clone for LocaleMatcher
Source§fn clone(&self) -> LocaleMatcher
fn clone(&self) -> LocaleMatcher
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 LocaleMatcher
impl Debug for LocaleMatcher
Source§impl From<LocaleMatcher> for JsValue
impl From<LocaleMatcher> for JsValue
Source§fn from(val: LocaleMatcher) -> Self
fn from(val: LocaleMatcher) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for LocaleMatcher
impl FromWasmAbi for LocaleMatcher
Source§impl IntoWasmAbi for LocaleMatcher
impl IntoWasmAbi for LocaleMatcher
Source§impl OptionFromWasmAbi for LocaleMatcher
impl OptionFromWasmAbi for LocaleMatcher
Source§impl OptionIntoWasmAbi for LocaleMatcher
impl OptionIntoWasmAbi for LocaleMatcher
Source§impl PartialEq for LocaleMatcher
impl PartialEq for LocaleMatcher
impl Copy for LocaleMatcher
impl Eq for LocaleMatcher
impl StructuralPartialEq for LocaleMatcher
Auto Trait Implementations§
impl Freeze for LocaleMatcher
impl RefUnwindSafe for LocaleMatcher
impl Send for LocaleMatcher
impl Sync for LocaleMatcher
impl Unpin for LocaleMatcher
impl UnsafeUnpin for LocaleMatcher
impl UnwindSafe for LocaleMatcher
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> 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::AbiSource§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.