Enum icu_segmenter::provider::BreakState
source ยท pub enum BreakState {
Break,
Keep,
NoMatch,
Intermediate(u8),
Index(u8),
}
Expand description
Break state
๐ง This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. In particular, the `DataProvider` implementations are only
guaranteed to match with this version's `*_unstable` providers. Use with caution.
Variantsยง
Break
Break
Keep
Keep rule
NoMatch
Non-matching rule
Intermediate(u8)
We have to look ahead one more character.
Index(u8)
Index of a state.
Trait Implementationsยง
sourceยงimpl AsULE for BreakState
impl AsULE for BreakState
sourceยงimpl Clone for BreakState
impl Clone for BreakState
sourceยงfn clone(&self) -> BreakState
fn clone(&self) -> BreakState
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 BreakState
impl Debug for BreakState
sourceยงimpl PartialEq for BreakState
impl PartialEq for BreakState
sourceยงfn eq(&self, other: &BreakState) -> bool
fn eq(&self, other: &BreakState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for BreakState
impl StructuralPartialEq for BreakState
Auto Trait Implementationsยง
impl Freeze for BreakState
impl RefUnwindSafe for BreakState
impl Send for BreakState
impl Sync for BreakState
impl Unpin for BreakState
impl UnwindSafe for BreakState
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