Enum ucd_parse::UnicodeDataNumeric
source · Expand description
A numeric value corresponding to characters with Numeric_Type=Numeric.
A numeric value can either be a signed integer or a rational number.
Variants§
Integer(i64)
An integer.
Rational(i64, i64)
A rational number. The first is the numerator and the latter is the denominator.
Trait Implementations§
source§impl Clone for UnicodeDataNumeric
impl Clone for UnicodeDataNumeric
source§fn clone(&self) -> UnicodeDataNumeric
fn clone(&self) -> UnicodeDataNumeric
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 more