pub enum LittleParserStates {
InvalidSegment,
NewSentence,
Idle,
PlainSegment,
}
Variants§
Trait Implementations§
Source§impl Clone for LittleParserStates
impl Clone for LittleParserStates
Source§fn clone(&self) -> LittleParserStates
fn clone(&self) -> LittleParserStates
Returns a duplicate 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 PartialEq for LittleParserStates
impl PartialEq for LittleParserStates
impl Copy for LittleParserStates
impl StructuralPartialEq for LittleParserStates
Auto Trait Implementations§
impl Freeze for LittleParserStates
impl RefUnwindSafe for LittleParserStates
impl Send for LittleParserStates
impl Sync for LittleParserStates
impl Unpin for LittleParserStates
impl UnwindSafe for LittleParserStates
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