pub struct RuntimeSchema<A> {
pub runtime_errors: FxHashMap<i64, RuntimeErrorInfo<A>>,
pub runtime_event_sites: Vec<RuntimeEventSite>,
pub comb_observers: Vec<RuntimeCombObserver<A>>,
pub testbench_read_roots: FxHashSet<A>,
pub rtl_writes: FxHashSet<VarAtomBase<A>>,
}Expand description
Source-independent runtime diagnostics and observable event descriptions.
Fields§
§runtime_errors: FxHashMap<i64, RuntimeErrorInfo<A>>§runtime_event_sites: Vec<RuntimeEventSite>§comb_observers: Vec<RuntimeCombObserver<A>>§testbench_read_roots: FxHashSet<A>Persistent state read directly by host-side testbench execution. These are optimization roots even when no SIR instruction loads them.
rtl_writes: FxHashSet<VarAtomBase<A>>Bit ranges written by RTL execution units. External component outputs may not overlap these ranges because that would create multiple drivers.
Trait Implementations§
Source§impl<A: Clone> Clone for RuntimeSchema<A>
impl<A: Clone> Clone for RuntimeSchema<A>
Source§fn clone(&self) -> RuntimeSchema<A>
fn clone(&self) -> RuntimeSchema<A>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<A: Debug> Debug for RuntimeSchema<A>
impl<A: Debug> Debug for RuntimeSchema<A>
Auto Trait Implementations§
impl<A> Freeze for RuntimeSchema<A>where
HashMap<i64, RuntimeErrorInfo<A>, BuildHasherDefault<FxHasher>>: Freeze,
Vec<RuntimeCombObserver<A>>: Freeze,
HashSet<A, BuildHasherDefault<FxHasher>>: Freeze,
HashSet<VarAtomBase<A>, BuildHasherDefault<FxHasher>>: Freeze,
impl<A> RefUnwindSafe for RuntimeSchema<A>where
HashMap<i64, RuntimeErrorInfo<A>, BuildHasherDefault<FxHasher>>: RefUnwindSafe,
Vec<RuntimeCombObserver<A>>: RefUnwindSafe,
HashSet<A, BuildHasherDefault<FxHasher>>: RefUnwindSafe,
HashSet<VarAtomBase<A>, BuildHasherDefault<FxHasher>>: RefUnwindSafe,
impl<A> Send for RuntimeSchema<A>where
HashMap<i64, RuntimeErrorInfo<A>, BuildHasherDefault<FxHasher>>: Send,
Vec<RuntimeCombObserver<A>>: Send,
HashSet<A, BuildHasherDefault<FxHasher>>: Send,
HashSet<VarAtomBase<A>, BuildHasherDefault<FxHasher>>: Send,
impl<A> Sync for RuntimeSchema<A>where
HashMap<i64, RuntimeErrorInfo<A>, BuildHasherDefault<FxHasher>>: Sync,
Vec<RuntimeCombObserver<A>>: Sync,
HashSet<A, BuildHasherDefault<FxHasher>>: Sync,
HashSet<VarAtomBase<A>, BuildHasherDefault<FxHasher>>: Sync,
impl<A> Unpin for RuntimeSchema<A>where
HashMap<i64, RuntimeErrorInfo<A>, BuildHasherDefault<FxHasher>>: Unpin,
Vec<RuntimeCombObserver<A>>: Unpin,
HashSet<A, BuildHasherDefault<FxHasher>>: Unpin,
HashSet<VarAtomBase<A>, BuildHasherDefault<FxHasher>>: Unpin,
impl<A> UnsafeUnpin for RuntimeSchema<A>where
HashMap<i64, RuntimeErrorInfo<A>, BuildHasherDefault<FxHasher>>: UnsafeUnpin,
Vec<RuntimeCombObserver<A>>: UnsafeUnpin,
HashSet<A, BuildHasherDefault<FxHasher>>: UnsafeUnpin,
HashSet<VarAtomBase<A>, BuildHasherDefault<FxHasher>>: UnsafeUnpin,
impl<A> UnwindSafe for RuntimeSchema<A>where
HashMap<i64, RuntimeErrorInfo<A>, BuildHasherDefault<FxHasher>>: UnwindSafe,
Vec<RuntimeCombObserver<A>>: UnwindSafe,
HashSet<A, BuildHasherDefault<FxHasher>>: UnwindSafe,
HashSet<VarAtomBase<A>, BuildHasherDefault<FxHasher>>: UnwindSafe,
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