pub enum PartialParseOp {
Ready,
Unready,
Discard,
}Expand description
Description of the parsing state
Variants§
Ready
A command is completed, use the previous characters and feed it to the command parser
Unready
Not yet a finished command, continue feeding characters
Discard
Discard all previous characters
Trait Implementations§
Source§impl Debug for PartialParseOp
impl Debug for PartialParseOp
Source§impl PartialEq for PartialParseOp
impl PartialEq for PartialParseOp
impl StructuralPartialEq for PartialParseOp
Auto Trait Implementations§
impl Freeze for PartialParseOp
impl RefUnwindSafe for PartialParseOp
impl Send for PartialParseOp
impl Sync for PartialParseOp
impl Unpin for PartialParseOp
impl UnwindSafe for PartialParseOp
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