pub enum SentencePosition {
SubStart,
End,
SubEnd,
ConnectionWord,
Other,
}Variants§
SubStart
Start of a sub-sentence.
End
End of a sentence.
SubEnd
Start of a sub-sentence.
ConnectionWord
Word to connect different parts of a sentence.
Other
Not a special sentence position.
Trait Implementations§
Source§impl Clone for SentencePosition
impl Clone for SentencePosition
Source§fn clone(&self) -> SentencePosition
fn clone(&self) -> SentencePosition
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 moreimpl Copy for SentencePosition
Source§impl Debug for SentencePosition
impl Debug for SentencePosition
Source§impl Default for SentencePosition
impl Default for SentencePosition
impl Eq for SentencePosition
Source§impl PartialEq for SentencePosition
impl PartialEq for SentencePosition
impl StructuralPartialEq for SentencePosition
Auto Trait Implementations§
impl Freeze for SentencePosition
impl RefUnwindSafe for SentencePosition
impl Send for SentencePosition
impl Sync for SentencePosition
impl Unpin for SentencePosition
impl UnsafeUnpin for SentencePosition
impl UnwindSafe for SentencePosition
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