pub(crate) struct ReplCommands {
pub(crate) goals: HashMap<Sym, ReplCmd>,
}
Expand description
Mapping from symbols to built-in REPL commands.
Fields§
§goals: HashMap<Sym, ReplCmd>
Implementations§
Source§impl ReplCommands
impl ReplCommands
pub fn new(syms: &mut SymbolStore) -> Self
pub fn as_resolver<'s>( &'s self, symbols: &'s SymbolStore, query_scope: Option<&'s VarScope>, ) -> ReplResolver<'s>
Auto Trait Implementations§
impl Freeze for ReplCommands
impl RefUnwindSafe for ReplCommands
impl Send for ReplCommands
impl Sync for ReplCommands
impl Unpin for ReplCommands
impl UnwindSafe for ReplCommands
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