pub struct Gurmukhi;
Expand description
Gurmukhi numeric digits.
§Gurmukhi
# | Gurmukhi |
---|---|
0 | ੦ |
1 | ੧ |
2 | ੨ |
3 | ੩ |
4 | ੪ |
… | … |
9 | ੯ |
10 | ੧੦ |
11 | ੧੧ |
12 | ੧੨ |
… | … |
99 | ੯੯ |
100 | ੧੦੦ |
101 | ੧੦੧ |
102 | ੧੦੨ |
Trait Implementations§
source§impl DigitCollection for Gurmukhi
impl DigitCollection for Gurmukhi
§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 Gurmukhi
impl PartialEq for Gurmukhi
impl Copy for Gurmukhi
impl Eq for Gurmukhi
impl StructuralPartialEq for Gurmukhi
Auto Trait Implementations§
impl Freeze for Gurmukhi
impl RefUnwindSafe for Gurmukhi
impl Send for Gurmukhi
impl Sync for Gurmukhi
impl Unpin for Gurmukhi
impl UnwindSafe for Gurmukhi
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.