pub enum ParserStateMachineKind {
Loop,
Continue,
Skip,
Done,
}Variants§
Implementations§
Source§impl ParserStateMachineKind
impl ParserStateMachineKind
pub fn all() -> &'static [ParserStateMachineKind]
Trait Implementations§
Source§impl Clone for ParserStateMachineKind
impl Clone for ParserStateMachineKind
Source§fn clone(&self) -> ParserStateMachineKind
fn clone(&self) -> ParserStateMachineKind
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 Debug for ParserStateMachineKind
impl Debug for ParserStateMachineKind
Source§impl Display for ParserStateMachineKind
impl Display for ParserStateMachineKind
Source§impl From<&ParserStateMachine> for ParserStateMachineKind
impl From<&ParserStateMachine> for ParserStateMachineKind
Source§fn from(value: &ParserStateMachine) -> ParserStateMachineKind
fn from(value: &ParserStateMachine) -> ParserStateMachineKind
Converts to this type from the input type.
Source§impl From<ParserStateMachine> for ParserStateMachineKind
impl From<ParserStateMachine> for ParserStateMachineKind
Source§fn from(value: ParserStateMachine) -> ParserStateMachineKind
fn from(value: ParserStateMachine) -> ParserStateMachineKind
Converts to this type from the input type.
Source§impl FromStr for ParserStateMachineKind
impl FromStr for ParserStateMachineKind
Source§impl Kind for ParserStateMachineKind
impl Kind for ParserStateMachineKind
Source§fn all() -> &'static [ParserStateMachineKind]
fn all() -> &'static [ParserStateMachineKind]
Return a slice with all possible kind variants.
Source§impl PartialEq for ParserStateMachineKind
impl PartialEq for ParserStateMachineKind
impl Copy for ParserStateMachineKind
impl Eq for ParserStateMachineKind
impl StructuralPartialEq for ParserStateMachineKind
Auto Trait Implementations§
impl Freeze for ParserStateMachineKind
impl RefUnwindSafe for ParserStateMachineKind
impl Send for ParserStateMachineKind
impl Sync for ParserStateMachineKind
impl Unpin for ParserStateMachineKind
impl UnwindSafe for ParserStateMachineKind
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