Struct ucd_parse::extracted::DerivedNumericValues
source · pub struct DerivedNumericValues {
pub codepoints: Codepoints,
pub numeric_value_decimal: String,
pub numeric_value_fraction: String,
}
Expand description
A single row in the extracted/DerivedNumericValues.txt
file.
This file gives the derived values of the Numeric_Value property.
Fields§
§codepoints: Codepoints
The codepoint or codepoint range for this entry.
numeric_value_decimal: String
The approximate Numeric_Value of the codepoints in this entry, as a decimal.
numeric_value_fraction: String
The exact Numeric_Value of the codepoints in this entry, as a fraction.
Trait Implementations§
source§impl Clone for DerivedNumericValues
impl Clone for DerivedNumericValues
source§fn clone(&self) -> DerivedNumericValues
fn clone(&self) -> DerivedNumericValues
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 DerivedNumericValues
impl Debug for DerivedNumericValues
source§impl Default for DerivedNumericValues
impl Default for DerivedNumericValues
source§fn default() -> DerivedNumericValues
fn default() -> DerivedNumericValues
Returns the “default value” for a type. Read more
source§impl FromStr for DerivedNumericValues
impl FromStr for DerivedNumericValues
source§impl PartialEq for DerivedNumericValues
impl PartialEq for DerivedNumericValues
source§fn eq(&self, other: &DerivedNumericValues) -> bool
fn eq(&self, other: &DerivedNumericValues) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl UcdFile for DerivedNumericValues
impl UcdFile for DerivedNumericValues
source§impl UcdFileByCodepoint for DerivedNumericValues
impl UcdFileByCodepoint for DerivedNumericValues
source§fn codepoints(&self) -> CodepointIter ⓘ
fn codepoints(&self) -> CodepointIter ⓘ
Returns the codepoints associated with this record.
impl Eq for DerivedNumericValues
impl StructuralEq for DerivedNumericValues
impl StructuralPartialEq for DerivedNumericValues
Auto Trait Implementations§
impl RefUnwindSafe for DerivedNumericValues
impl Send for DerivedNumericValues
impl Sync for DerivedNumericValues
impl Unpin for DerivedNumericValues
impl UnwindSafe for DerivedNumericValues
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