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