pub struct ExecCtx<C: Ctx + 'static, E: 'static> {
pub functions: FxHashMap<String, InitFn<C, E>>,
pub variables: FxHashMap<Path, FxHashMap<Chars, Value>>,
pub dbg_ctx: DbgCtx<E>,
pub user: C,
}
Fields§
§functions: FxHashMap<String, InitFn<C, E>>
§variables: FxHashMap<Path, FxHashMap<Chars, Value>>
§dbg_ctx: DbgCtx<E>
§user: C
Implementations§
Auto Trait Implementations§
impl<C, E> Freeze for ExecCtx<C, E>where
C: Freeze,
impl<C, E> !RefUnwindSafe for ExecCtx<C, E>
impl<C, E> Send for ExecCtx<C, E>
impl<C, E> Sync for ExecCtx<C, E>
impl<C, E> Unpin for ExecCtx<C, E>
impl<C, E> !UnwindSafe for ExecCtx<C, E>
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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