#[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
Sourcepub fn from_str(s: &str) -> Option<UseGrouping>
pub fn from_str(s: &str) -> Option<UseGrouping>
Convert a string to this enum variant.
Sourcepub fn from_js_value(obj: &JsValue) -> Option<UseGrouping>
pub fn from_js_value(obj: &JsValue) -> Option<UseGrouping>
Convert a JsValue (if it’s a string) to this enum variant.
Trait Implementations§
Source§impl BatchableResult for UseGrouping
impl BatchableResult for UseGrouping
Source§impl BinaryDecode for UseGrouping
impl BinaryDecode for UseGrouping
fn decode(decoder: &mut DecodedData<'_>) -> Result<Self, DecodeError>
Source§impl BinaryEncode for UseGrouping
impl BinaryEncode for UseGrouping
fn encode(self, encoder: &mut EncodedData)
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 (const: unstable) · 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 EncodeTypeDef for UseGrouping
impl EncodeTypeDef for UseGrouping
Source§fn encode_type_def(buf: &mut Vec<u8>)
fn encode_type_def(buf: &mut Vec<u8>)
Encode this type’s definition into the buffer.
For primitives, this is just the TypeTag byte.
For callbacks, this includes param count, param types, and return type.
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 PartialEq for UseGrouping
impl PartialEq for UseGrouping
Source§fn eq(&self, other: &UseGrouping) -> bool
fn eq(&self, other: &UseGrouping) -> bool
Tests for
self and other values to be equal, and is used by ==.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