Struct icu_decimal::provider::DecimalDigitsV1
source ยท pub struct DecimalDigitsV1 {
pub digits: [char; 10],
}
Expand description
The digits for a given numbering system. This data ought to be stored in the und
locale with an auxiliary key
set to the numbering system code.
๐ง This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Fieldsยง
ยงdigits: [char; 10]
Digit characters for the current numbering system. In most systems, these digits are contiguous, but in some systems, such as hanidec, they are not contiguous.
Trait Implementationsยง
sourceยงimpl Bake for DecimalDigitsV1
impl Bake for DecimalDigitsV1
sourceยงfn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
sourceยงimpl BakeSize for DecimalDigitsV1
impl BakeSize for DecimalDigitsV1
sourceยงfn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
Returns the size
sourceยงimpl Clone for DecimalDigitsV1
impl Clone for DecimalDigitsV1
sourceยงfn clone(&self) -> DecimalDigitsV1
fn clone(&self) -> DecimalDigitsV1
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 DecimalDigitsV1
impl Debug for DecimalDigitsV1
sourceยงimpl<'de> Deserialize<'de> for DecimalDigitsV1
impl<'de> Deserialize<'de> for DecimalDigitsV1
sourceยงfn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceยงimpl PartialEq for DecimalDigitsV1
impl PartialEq for DecimalDigitsV1
sourceยงimpl Serialize for DecimalDigitsV1
impl Serialize for DecimalDigitsV1
sourceยงimpl<'a> Yokeable<'a> for DecimalDigitsV1where
Self: Sized,
impl<'a> Yokeable<'a> for DecimalDigitsV1where
Self: Sized,
sourceยงtype Output = DecimalDigitsV1
type Output = DecimalDigitsV1
This type MUST be
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourceยงfn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
sourceยงunsafe fn make(this: Self::Output) -> Self
unsafe fn make(this: Self::Output) -> Self
This method can be used to cast away
Self<'a>
โs lifetime. Read moresourceยงfn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
This method must cast
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moresourceยงimpl<'zf> ZeroFrom<'zf, DecimalDigitsV1> for DecimalDigitsV1
impl<'zf> ZeroFrom<'zf, DecimalDigitsV1> for DecimalDigitsV1
impl Copy for DecimalDigitsV1
impl StructuralPartialEq for DecimalDigitsV1
Auto Trait Implementationsยง
impl Freeze for DecimalDigitsV1
impl RefUnwindSafe for DecimalDigitsV1
impl Send for DecimalDigitsV1
impl Sync for DecimalDigitsV1
impl Unpin for DecimalDigitsV1
impl UnwindSafe for DecimalDigitsV1
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ยง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<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