Struct z3tracer::parser::Parser[][src]

pub struct Parser<R, S> { /* fields omitted */ }

Parser for Z3 traces.

Implementations

impl<R, S> Parser<R, S>[src]

pub fn new(lexer: Lexer<R>, state: S) -> Self[src]

pub fn state(&self) -> &S[src]

pub fn into_state(self) -> S[src]

impl<R, S> Parser<R, S> where
    R: BufRead,
    S: LogVisitor
[src]

pub fn parse(&mut self) -> Result<()>[src]

Parse the input.

Auto Trait Implementations

impl<R, S> RefUnwindSafe for Parser<R, S> where
    R: RefUnwindSafe,
    S: RefUnwindSafe

impl<R, S> Send for Parser<R, S> where
    R: Send,
    S: Send

impl<R, S> Sync for Parser<R, S> where
    R: Sync,
    S: Sync

impl<R, S> Unpin for Parser<R, S> where
    R: Unpin,
    S: Unpin

impl<R, S> UnwindSafe for Parser<R, S> where
    R: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.