pub struct Malayalam;
Expand description
Malayalam numeric digits.
§Malayalam
# | Malayalam |
---|---|
0 | ൦ |
1 | ൧ |
2 | ൨ |
3 | ൩ |
4 | ൪ |
… | … |
9 | ൯ |
10 | ൧൦ |
11 | ൧൧ |
12 | ൧൨ |
… | … |
99 | ൯൯ |
100 | ൧൦൦ |
101 | ൧൦൧ |
102 | ൧൦൨ |
Trait Implementations§
source§impl DigitCollection for Malayalam
impl DigitCollection for Malayalam
§type Fallback = NoFallback
type Fallback = NoFallback
The digit collection that should be used after this collection’s range
is exhausted.
source§fn has_zero_digit(&self) -> bool
fn has_zero_digit(&self) -> bool
Returns true if this collection has a symbol representing
0
at index
0.source§fn zero_based(&self) -> bool
fn zero_based(&self) -> bool
Returns true if this collection should start counting at 1 instead of 0.
This function is only called if
has_zero_digit()
returns false.source§impl PartialEq for Malayalam
impl PartialEq for Malayalam
impl Copy for Malayalam
impl Eq for Malayalam
impl StructuralPartialEq for Malayalam
Auto Trait Implementations§
impl Freeze for Malayalam
impl RefUnwindSafe for Malayalam
impl Send for Malayalam
impl Sync for Malayalam
impl Unpin for Malayalam
impl UnwindSafe for Malayalam
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<T, D> NominalSystem<T> for D
impl<T, D> NominalSystem<T> for D
source§fn try_format_nominal(&self, nominal: T) -> Result<NominalString, Error<T>>
fn try_format_nominal(&self, nominal: T) -> Result<NominalString, Error<T>>
Tries to format
nominal
using this system. Read moresource§fn format_nominal(&self, nominal: T) -> NominalString
fn format_nominal(&self, nominal: T) -> NominalString
Formats
nominal
using this system.