Enum leptos_use::NumberGrouping
source · pub enum NumberGrouping {
Always,
Auto,
None,
Min2,
}
Variants§
Always
display grouping separators even if the locale prefers otherwise.
Auto
display grouping separators based on the locale preference, which may also be dependent on the currency.
None
do not display grouping separators.
Min2
display grouping separators when there are at least 2 digits in a group.
Trait Implementations§
source§impl Clone for NumberGrouping
impl Clone for NumberGrouping
source§fn clone(&self) -> NumberGrouping
fn clone(&self) -> NumberGrouping
Returns a copy 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 NumberGrouping
impl Debug for NumberGrouping
source§impl Default for NumberGrouping
impl Default for NumberGrouping
source§fn default() -> NumberGrouping
fn default() -> NumberGrouping
Returns the “default value” for a type. Read more
source§impl Display for NumberGrouping
impl Display for NumberGrouping
source§impl From<NumberGrouping> for JsValue
impl From<NumberGrouping> for JsValue
source§fn from(value: NumberGrouping) -> Self
fn from(value: NumberGrouping) -> Self
Converts to this type from the input type.
source§impl Hash for NumberGrouping
impl Hash for NumberGrouping
source§impl PartialEq for NumberGrouping
impl PartialEq for NumberGrouping
impl Copy for NumberGrouping
impl Eq for NumberGrouping
impl StructuralPartialEq for NumberGrouping
Auto Trait Implementations§
impl Freeze for NumberGrouping
impl RefUnwindSafe for NumberGrouping
impl Send for NumberGrouping
impl Sync for NumberGrouping
impl Unpin for NumberGrouping
impl UnwindSafe for NumberGrouping
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 more