Struct ucd_parse::GraphemeClusterBreakTest
source · pub struct GraphemeClusterBreakTest {
pub grapheme_clusters: Vec<String>,
pub comment: String,
}
Expand description
A single row in the auxiliary/GraphemeBreakTest.txt
file.
This file defines tests for the grapheme cluster break algorithm.
Fields§
§grapheme_clusters: Vec<String>
Each string is a UTF-8 encoded group of codepoints that make up a single grapheme cluster.
comment: String
A human readable description of this test.
Trait Implementations§
source§impl Clone for GraphemeClusterBreakTest
impl Clone for GraphemeClusterBreakTest
source§fn clone(&self) -> GraphemeClusterBreakTest
fn clone(&self) -> GraphemeClusterBreakTest
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 GraphemeClusterBreakTest
impl Debug for GraphemeClusterBreakTest
source§impl Default for GraphemeClusterBreakTest
impl Default for GraphemeClusterBreakTest
source§fn default() -> GraphemeClusterBreakTest
fn default() -> GraphemeClusterBreakTest
Returns the “default value” for a type. Read more
source§impl FromStr for GraphemeClusterBreakTest
impl FromStr for GraphemeClusterBreakTest
source§impl PartialEq for GraphemeClusterBreakTest
impl PartialEq for GraphemeClusterBreakTest
source§fn eq(&self, other: &GraphemeClusterBreakTest) -> bool
fn eq(&self, other: &GraphemeClusterBreakTest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl UcdFile for GraphemeClusterBreakTest
impl UcdFile for GraphemeClusterBreakTest
impl Eq for GraphemeClusterBreakTest
impl StructuralEq for GraphemeClusterBreakTest
impl StructuralPartialEq for GraphemeClusterBreakTest
Auto Trait Implementations§
impl RefUnwindSafe for GraphemeClusterBreakTest
impl Send for GraphemeClusterBreakTest
impl Sync for GraphemeClusterBreakTest
impl Unpin for GraphemeClusterBreakTest
impl UnwindSafe for GraphemeClusterBreakTest
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