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