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