pub struct ParsingEnvironment {
pub operators: HashMap<&'static str, OperatorOptions>,
pub handlers: HashMap<&'static str, Box<dyn TokenParserExtension>>,
pub functions: HashSet<&'static str>,
}Fields§
§operators: HashMap<&'static str, OperatorOptions>§handlers: HashMap<&'static str, Box<dyn TokenParserExtension>>§functions: HashSet<&'static str>Auto Trait Implementations§
impl Freeze for ParsingEnvironment
impl !RefUnwindSafe for ParsingEnvironment
impl !Send for ParsingEnvironment
impl !Sync for ParsingEnvironment
impl Unpin for ParsingEnvironment
impl !UnwindSafe for ParsingEnvironment
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