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