Struct icu::properties::props::WordBreak
source · #[repr(transparent)]pub struct WordBreak(/* private fields */);
Expand description
Enumerated property Word_Break.
See “Default Word Boundary Specification” in UAX #29 for the summary of each property value: https://www.unicode.org/reports/tr29/#Default_Word_Boundaries.
The numeric value is compatible with UWordBreakValues
in ICU4C.
Implementations§
source§impl WordBreak
impl WordBreak
pub const Other: WordBreak = _
pub const ALetter: WordBreak = _
pub const Format: WordBreak = _
pub const Katakana: WordBreak = _
pub const MidLetter: WordBreak = _
pub const MidNum: WordBreak = _
pub const Numeric: WordBreak = _
pub const ExtendNumLet: WordBreak = _
pub const CR: WordBreak = _
pub const Extend: WordBreak = _
pub const LF: WordBreak = _
pub const MidNumLet: WordBreak = _
pub const Newline: WordBreak = _
pub const RegionalIndicator: WordBreak = _
pub const HebrewLetter: WordBreak = _
pub const SingleQuote: WordBreak = _
pub const DoubleQuote: WordBreak = _
sourcepub const GlueAfterZwj: WordBreak = _
pub const GlueAfterZwj: WordBreak = _
This value is obsolete and unused.
pub const ZWJ: WordBreak = _
pub const WSegSpace: WordBreak = _
Trait Implementations§
source§impl<'de> Deserialize<'de> for WordBreak
impl<'de> Deserialize<'de> for WordBreak
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<WordBreak, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<WordBreak, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EnumeratedProperty for WordBreak
impl EnumeratedProperty for WordBreak
source§impl Ord for WordBreak
impl Ord for WordBreak
source§impl PartialOrd for WordBreak
impl PartialOrd for WordBreak
source§impl Serialize for WordBreak
impl Serialize for WordBreak
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl TrieValue for WordBreak
impl TrieValue for WordBreak
source§type TryFromU32Error = TryFromIntError
type TryFromU32Error = TryFromIntError
Last-resort fallback value to return if we cannot read data from the trie. Read more
source§fn try_from_u32(
i: u32,
) -> Result<WordBreak, <WordBreak as TrieValue>::TryFromU32Error>
fn try_from_u32( i: u32, ) -> Result<WordBreak, <WordBreak as TrieValue>::TryFromU32Error>
A parsing function that is primarily motivated by deserialization contexts.
When the serialization type width is smaller than 32 bits, then it is expected
that the call site will widen the value to a
u32
first.impl Copy for WordBreak
impl Eq for WordBreak
impl NamedEnumeratedProperty for WordBreak
impl ParseableEnumeratedProperty for WordBreak
impl StructuralPartialEq for WordBreak
Auto Trait Implementations§
impl Freeze for WordBreak
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more