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§impl UcdFile for GraphemeClusterBreakTest
impl UcdFile for GraphemeClusterBreakTest
impl Eq for GraphemeClusterBreakTest
impl StructuralPartialEq for GraphemeClusterBreakTest
Auto Trait Implementations§
impl Freeze for GraphemeClusterBreakTest
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