Struct ucd_parse::PropertyValueAlias
source · pub struct PropertyValueAlias {
pub property: String,
pub numeric: Option<u8>,
pub abbreviation: String,
pub long: String,
pub aliases: Vec<String>,
}
Expand description
A single row in the PropertyValueAliases.txt
file.
Fields§
§property: String
The property name for which this value alias applies.
numeric: Option<u8>
A numeric abbreviation for this property value, if present. (This is
seemingly only present for the ccc
/Canonical_Combining_Class
property.)
abbreviation: String
An abbreviation for this property value.
long: String
The “long” form of this property value.
aliases: Vec<String>
Additional value aliases (if present).
Trait Implementations§
source§impl Clone for PropertyValueAlias
impl Clone for PropertyValueAlias
source§fn clone(&self) -> PropertyValueAlias
fn clone(&self) -> PropertyValueAlias
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 PropertyValueAlias
impl Debug for PropertyValueAlias
source§impl Default for PropertyValueAlias
impl Default for PropertyValueAlias
source§fn default() -> PropertyValueAlias
fn default() -> PropertyValueAlias
Returns the “default value” for a type. Read more
source§impl FromStr for PropertyValueAlias
impl FromStr for PropertyValueAlias
source§impl PartialEq for PropertyValueAlias
impl PartialEq for PropertyValueAlias
source§fn eq(&self, other: &PropertyValueAlias) -> bool
fn eq(&self, other: &PropertyValueAlias) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl UcdFile for PropertyValueAlias
impl UcdFile for PropertyValueAlias
impl Eq for PropertyValueAlias
impl StructuralEq for PropertyValueAlias
impl StructuralPartialEq for PropertyValueAlias
Auto Trait Implementations§
impl RefUnwindSafe for PropertyValueAlias
impl Send for PropertyValueAlias
impl Sync for PropertyValueAlias
impl Unpin for PropertyValueAlias
impl UnwindSafe for PropertyValueAlias
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