Struct ucd_parse::BidiMirroring
source · pub struct BidiMirroring {
pub codepoint: Codepoint,
pub bidi_mirroring_glyph: Codepoint,
}
Expand description
Represents a single row in the BidiMirroring.txt
file.
The field names were taken from the header of BidiMirroring.txt.
Fields§
§codepoint: Codepoint
The codepoint corresponding to this row.
bidi_mirroring_glyph: Codepoint
The codepoint that has typically has a glyph that is the mirror image
of codepoint
.
Trait Implementations§
source§impl Clone for BidiMirroring
impl Clone for BidiMirroring
source§fn clone(&self) -> BidiMirroring
fn clone(&self) -> BidiMirroring
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 BidiMirroring
impl Debug for BidiMirroring
source§impl Default for BidiMirroring
impl Default for BidiMirroring
source§fn default() -> BidiMirroring
fn default() -> BidiMirroring
Returns the “default value” for a type. Read more
source§impl Display for BidiMirroring
impl Display for BidiMirroring
source§impl FromStr for BidiMirroring
impl FromStr for BidiMirroring
source§impl PartialEq for BidiMirroring
impl PartialEq for BidiMirroring
source§fn eq(&self, other: &BidiMirroring) -> bool
fn eq(&self, other: &BidiMirroring) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl UcdFile for BidiMirroring
impl UcdFile for BidiMirroring
source§impl UcdFileByCodepoint for BidiMirroring
impl UcdFileByCodepoint for BidiMirroring
source§fn codepoints(&self) -> CodepointIter ⓘ
fn codepoints(&self) -> CodepointIter ⓘ
Returns the codepoints associated with this record.
impl Eq for BidiMirroring
impl StructuralEq for BidiMirroring
impl StructuralPartialEq for BidiMirroring
Auto Trait Implementations§
impl RefUnwindSafe for BidiMirroring
impl Send for BidiMirroring
impl Sync for BidiMirroring
impl Unpin for BidiMirroring
impl UnwindSafe for BidiMirroring
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