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