Struct ucd_parse::JamoShortName
[−]
[src]
pub struct JamoShortName {
pub codepoint: Codepoint,
pub name: String,
}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
impl Clone for JamoShortName[src]
fn clone(&self) -> JamoShortName[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for JamoShortName[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Default for JamoShortName[src]
fn default() -> JamoShortName[src]
Returns the "default value" for a type. Read more
impl Eq for JamoShortName[src]
impl PartialEq for JamoShortName[src]
fn eq(&self, __arg_0: &JamoShortName) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &JamoShortName) -> bool[src]
This method tests for !=.
impl UcdFile for JamoShortName[src]
fn relative_file_path() -> &'static Path[src]
The file path corresponding to this file, relative to the UCD directory. Read more
fn file_path<P: AsRef<Path>>(ucd_dir: P) -> PathBuf[src]
The full file path corresponding to this file given the UCD directory path. Read more
fn from_dir<P: AsRef<Path>>(
ucd_dir: P
) -> Result<UcdLineParser<File, Self>, Error>[src]
ucd_dir: P
) -> Result<UcdLineParser<File, Self>, Error>
Create an iterator over each record in this UCD file. Read more
impl UcdFileByCodepoint for JamoShortName[src]
ⓘImportant traits for CodepointIterfn codepoints(&self) -> CodepointIter[src]
Returns the codepoints associated with this record.