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