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