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: CodepointsThe codepoint or codepoint range for this entry.
property: StringThe derived property of the codepoints in this entry. Currently, this is always the always the string “Bidi_Mirrored”.
Trait Implementations
sourceimpl Clone for DerivedBinaryProperties
impl Clone for DerivedBinaryProperties
sourcefn clone(&self) -> DerivedBinaryProperties
fn clone(&self) -> DerivedBinaryProperties
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DerivedBinaryProperties
impl Debug for DerivedBinaryProperties
sourceimpl Default for DerivedBinaryProperties
impl Default for DerivedBinaryProperties
sourcefn default() -> DerivedBinaryProperties
fn default() -> DerivedBinaryProperties
Returns the “default value” for a type. Read more
sourceimpl FromStr for DerivedBinaryProperties
impl FromStr for DerivedBinaryProperties
sourceimpl PartialEq<DerivedBinaryProperties> for DerivedBinaryProperties
impl PartialEq<DerivedBinaryProperties> for DerivedBinaryProperties
sourcefn 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 ==. Read more
sourceimpl UcdFile for DerivedBinaryProperties
impl UcdFile for DerivedBinaryProperties
sourceimpl UcdFileByCodepoint for DerivedBinaryProperties
impl UcdFileByCodepoint for DerivedBinaryProperties
sourcefn codepoints(&self) -> CodepointIterⓘNotable traits for CodepointIterimpl Iterator for CodepointIter type Item = Codepoint;
fn codepoints(&self) -> CodepointIterⓘNotable traits for CodepointIterimpl Iterator for CodepointIter type Item = Codepoint;
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more