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