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