pub struct WordBreak {
pub codepoints: Codepoints,
pub value: String,
}
Expand description
A single row in the auxiliary/WordBreakProperty.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 PartialEq for WordBreak
impl PartialEq for WordBreak
source§impl UcdFile for WordBreak
impl UcdFile for WordBreak
source§impl UcdFileByCodepoint for WordBreak
impl UcdFileByCodepoint for WordBreak
source§fn codepoints(&self) -> CodepointIter ⓘ
fn codepoints(&self) -> CodepointIter ⓘ
Returns the codepoints associated with this record.
impl Eq for WordBreak
impl StructuralEq for WordBreak
impl StructuralPartialEq for WordBreak
Auto Trait Implementations§
impl RefUnwindSafe for WordBreak
impl Send for WordBreak
impl Sync for WordBreak
impl Unpin for WordBreak
impl UnwindSafe for WordBreak
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