pub enum ParserImpl {
Peg,
}Expand description
Parser implementation to use
Variants§
Peg
PEG-based parser (token-based)
Trait Implementations§
Source§impl Clone for ParserImpl
impl Clone for ParserImpl
Source§fn clone(&self) -> ParserImpl
fn clone(&self) -> ParserImpl
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 ParserImpl
impl Debug for ParserImpl
Source§impl Default for ParserImpl
impl Default for ParserImpl
Source§fn default() -> ParserImpl
fn default() -> ParserImpl
Returns the “default value” for a type. Read more
Source§impl Hash for ParserImpl
impl Hash for ParserImpl
Source§impl PartialEq for ParserImpl
impl PartialEq for ParserImpl
impl Copy for ParserImpl
impl Eq for ParserImpl
impl StructuralPartialEq for ParserImpl
Auto Trait Implementations§
impl Freeze for ParserImpl
impl RefUnwindSafe for ParserImpl
impl Send for ParserImpl
impl Sync for ParserImpl
impl Unpin for ParserImpl
impl UnsafeUnpin for ParserImpl
impl UnwindSafe for ParserImpl
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.