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