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