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: CodepointsThe codepoint or codepoint range for this entry.
bidi_class: StringThe 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 duplicate of the value. Read more
1.0.0 (const: unstable) · 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
impl Eq for DerivedBidiClass
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
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DerivedBidiClass
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.
Auto Trait Implementations§
impl Freeze for DerivedBidiClass
impl RefUnwindSafe for DerivedBidiClass
impl Send for DerivedBidiClass
impl Sync for DerivedBidiClass
impl Unpin for DerivedBidiClass
impl UnsafeUnpin 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