[][src]Struct gcode::Parser

pub struct Parser<'input, C, B = DefaultBuffers> { /* fields omitted */ }

A parser for parsing g-code programs.

Methods

impl<'input, C, B> Parser<'input, C, B>[src]

pub fn new(src: &'input str, callbacks: C) -> Self[src]

Create a new Parser from some source text and a set of Callbacks.

Trait Implementations

impl<'input, C: Debug, B: Debug> Debug for Parser<'input, C, B>[src]

impl<'input, B> From<&'input str> for Parser<'input, Nop, B>[src]

impl<'input, C: Callbacks, B: Buffers<'input>> Iterator for Parser<'input, C, B>[src]

type Item = Line<'input, B>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'input, C, B> RefUnwindSafe for Parser<'input, C, B> where
    B: RefUnwindSafe,
    C: RefUnwindSafe

impl<'input, C, B> Send for Parser<'input, C, B> where
    B: Send,
    C: Send

impl<'input, C, B> Sync for Parser<'input, C, B> where
    B: Sync,
    C: Sync

impl<'input, C, B> Unpin for Parser<'input, C, B> where
    B: Unpin,
    C: Unpin

impl<'input, C, B> UnwindSafe for Parser<'input, C, B> where
    B: UnwindSafe,
    C: 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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.