[][src]Struct gluon_parser::infix::Reparser

pub struct Reparser<'s, 'ast, Id: 's> { /* fields omitted */ }

Implementations

impl<'s, 'ast, Id> Reparser<'s, 'ast, Id>[src]

pub fn new(
    arena: ArenaRef<'s, 'ast, Id>,
    operators: OpTable<Id>,
    symbols: &'s dyn IdentEnv<Ident = Id>
) -> Self
[src]

pub fn reparse(
    &mut self,
    expr: &mut SpannedExpr<'ast, Id>
) -> Result<(), Errors<Spanned<Error, BytePos>>> where
    Id: Eq + Hash + AsRef<str> + Clone + Debug
[src]

Trait Implementations

impl<'a, 's, 'ast, Id> MutVisitor<'a, 'ast> for Reparser<'s, 'ast, Id> where
    Id: Eq + Hash + AsRef<str> + Clone + Debug + 'a + 'ast, 
[src]

type Ident = Id

Auto Trait Implementations

impl<'s, 'ast, Id> !RefUnwindSafe for Reparser<'s, 'ast, Id>

impl<'s, 'ast, Id> !Send for Reparser<'s, 'ast, Id>

impl<'s, 'ast, Id> !Sync for Reparser<'s, 'ast, Id>

impl<'s, 'ast, Id> Unpin for Reparser<'s, 'ast, Id> where
    Id: Unpin,
    'ast: 's, 

impl<'s, 'ast, Id> !UnwindSafe for Reparser<'s, 'ast, Id>

Blanket Implementations

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

impl<Id> AsId<Id> for Id where
    Id: ?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.