#[non_exhaustive]pub struct SentenceBreakOptions<'a> {
pub content_locale: Option<&'a LanguageIdentifier>,
pub invariant_options: SentenceBreakInvariantOptions,
}Expand description
Options to tailor sentence breaking behavior.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.content_locale: Option<&'a LanguageIdentifier>Content locale for sentence segmenter.
If you know the language of the text being segmented, provide it here in order to produce higher quality breakpoints.
invariant_options: SentenceBreakInvariantOptionsOptions independent of the locale
Trait Implementations§
Source§impl<'a> Clone for SentenceBreakOptions<'a>
impl<'a> Clone for SentenceBreakOptions<'a>
Source§fn clone(&self) -> SentenceBreakOptions<'a>
fn clone(&self) -> SentenceBreakOptions<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for SentenceBreakOptions<'a>
impl<'a> Debug for SentenceBreakOptions<'a>
Source§impl<'a> Default for SentenceBreakOptions<'a>
impl<'a> Default for SentenceBreakOptions<'a>
Source§fn default() -> SentenceBreakOptions<'a>
fn default() -> SentenceBreakOptions<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> PartialEq for SentenceBreakOptions<'a>
impl<'a> PartialEq for SentenceBreakOptions<'a>
Source§fn eq(&self, other: &SentenceBreakOptions<'a>) -> bool
fn eq(&self, other: &SentenceBreakOptions<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Copy for SentenceBreakOptions<'a>
impl<'a> Eq for SentenceBreakOptions<'a>
impl<'a> StructuralPartialEq for SentenceBreakOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for SentenceBreakOptions<'a>
impl<'a> RefUnwindSafe for SentenceBreakOptions<'a>
impl<'a> Send for SentenceBreakOptions<'a>
impl<'a> Sync for SentenceBreakOptions<'a>
impl<'a> Unpin for SentenceBreakOptions<'a>
impl<'a> UnsafeUnpin for SentenceBreakOptions<'a>
impl<'a> UnwindSafe for SentenceBreakOptions<'a>
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