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