pub struct DebugLookup<R, Parser>where
    R: Reader,
    Parser: LookupParser<R>,{
    input_buffer: R,
    phantom: PhantomData<Parser>,
}Fields§
§input_buffer: R§phantom: PhantomData<Parser>Implementations§
Source§impl<R, Parser> DebugLookup<R, Parser>where
    R: Reader,
    Parser: LookupParser<R>,
 
impl<R, Parser> DebugLookup<R, Parser>where
    R: Reader,
    Parser: LookupParser<R>,
Trait Implementations§
Source§impl<R, Parser> Clone for DebugLookup<R, Parser>
 
impl<R, Parser> Clone for DebugLookup<R, Parser>
Source§fn clone(&self) -> DebugLookup<R, Parser>
 
fn clone(&self) -> DebugLookup<R, Parser>
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<R, Parser> Debug for DebugLookup<R, Parser>
 
impl<R, Parser> Debug for DebugLookup<R, Parser>
Source§impl<R, Parser> From<R> for DebugLookup<R, Parser>where
    R: Reader,
    Parser: LookupParser<R>,
 
impl<R, Parser> From<R> for DebugLookup<R, Parser>where
    R: Reader,
    Parser: LookupParser<R>,
Auto Trait Implementations§
impl<R, Parser> Freeze for DebugLookup<R, Parser>where
    R: Freeze,
impl<R, Parser> RefUnwindSafe for DebugLookup<R, Parser>where
    R: RefUnwindSafe,
    Parser: RefUnwindSafe,
impl<R, Parser> Send for DebugLookup<R, Parser>
impl<R, Parser> Sync for DebugLookup<R, Parser>
impl<R, Parser> Unpin for DebugLookup<R, Parser>
impl<R, Parser> UnwindSafe for DebugLookup<R, Parser>where
    R: UnwindSafe,
    Parser: UnwindSafe,
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