Struct forester_rs::tree::parser::Parser
source · pub struct Parser<'a> { /* private fields */ }
Expand description
just a parser for the tree language
Example of the language
// built in library
import "std:actions"
r_fallback retry_with_delay(delay:num, attempts:num,trg:tree){
retry(attempts) fallback {
trg(..)
wait(delay)
fail()
}
wait(delay)
}
Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Parser<'a>
impl<'a> Send for Parser<'a>
impl<'a> Sync for Parser<'a>
impl<'a> Unpin for Parser<'a>
impl<'a> UnwindSafe for Parser<'a>
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