Struct ucd_parse::JamoShortName
source · pub struct JamoShortName {
pub codepoint: Codepoint,
pub name: String,
}
Expand description
A single row in the Jamo.txt
file.
The Jamo.txt
file defines the Jamo_Short_Name
property.
Fields§
§codepoint: Codepoint
The codepoint corresponding to this row.
name: String
The actual “Jamo Short Name.” This string contains at most 3 bytes and may be empty.
Trait Implementations§
source§impl Clone for JamoShortName
impl Clone for JamoShortName
source§fn clone(&self) -> JamoShortName
fn clone(&self) -> JamoShortName
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 JamoShortName
impl Debug for JamoShortName
source§impl Default for JamoShortName
impl Default for JamoShortName
source§fn default() -> JamoShortName
fn default() -> JamoShortName
Returns the “default value” for a type. Read more
source§impl FromStr for JamoShortName
impl FromStr for JamoShortName
source§impl PartialEq for JamoShortName
impl PartialEq for JamoShortName
source§fn eq(&self, other: &JamoShortName) -> bool
fn eq(&self, other: &JamoShortName) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl UcdFile for JamoShortName
impl UcdFile for JamoShortName
source§impl UcdFileByCodepoint for JamoShortName
impl UcdFileByCodepoint for JamoShortName
source§fn codepoints(&self) -> CodepointIter ⓘ
fn codepoints(&self) -> CodepointIter ⓘ
Returns the codepoints associated with this record.
impl Eq for JamoShortName
impl StructuralEq for JamoShortName
impl StructuralPartialEq for JamoShortName
Auto Trait Implementations§
impl RefUnwindSafe for JamoShortName
impl Send for JamoShortName
impl Sync for JamoShortName
impl Unpin for JamoShortName
impl UnwindSafe for JamoShortName
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