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