#[non_exhaustive]pub enum UseGrouping {
Always = 0,
Auto = 1,
Min2 = 2,
True = 3,
False = 4,
}Expand description
Use grouping option for Intl.NumberFormat.
Determines whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators.
The default is Min2 if notation is “compact”, and Auto otherwise.
Note: The string values "true" and "false" are accepted by JavaScript
but are always converted to the default value. Use True and False
variants for the boolean behavior.
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 UseGrouping
impl UseGrouping
pub fn from_js_value(obj: &JsValue) -> Option<UseGrouping>
Trait Implementations§
Source§impl Clone for UseGrouping
impl Clone for UseGrouping
Source§fn clone(&self) -> UseGrouping
fn clone(&self) -> UseGrouping
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 UseGrouping
impl Debug for UseGrouping
Source§impl From<UseGrouping> for JsValue
impl From<UseGrouping> for JsValue
Source§fn from(val: UseGrouping) -> Self
fn from(val: UseGrouping) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for UseGrouping
impl FromWasmAbi for UseGrouping
Source§impl IntoWasmAbi for UseGrouping
impl IntoWasmAbi for UseGrouping
Source§impl OptionFromWasmAbi for UseGrouping
impl OptionFromWasmAbi for UseGrouping
Source§impl OptionIntoWasmAbi for UseGrouping
impl OptionIntoWasmAbi for UseGrouping
Source§impl PartialEq for UseGrouping
impl PartialEq for UseGrouping
impl Copy for UseGrouping
impl Eq for UseGrouping
impl StructuralPartialEq for UseGrouping
Auto Trait Implementations§
impl Freeze for UseGrouping
impl RefUnwindSafe for UseGrouping
impl Send for UseGrouping
impl Sync for UseGrouping
impl Unpin for UseGrouping
impl UnsafeUnpin for UseGrouping
impl UnwindSafe for UseGrouping
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.