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