pub struct SimReport {
pub dalek_commit: String,
pub rhdl_commit: String,
pub cases: Vec<SimCase>,
}Expand description
Complete simulation summary and source pins.
Fields§
§dalek_commit: StringVendored Dalek commit used as semantic oracle.
rhdl_commit: StringVendored RHDL commit used for simulation/lowering.
cases: Vec<SimCase>Ordered simulation results.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SimReport
impl<'de> Deserialize<'de> for SimReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SimReport
impl RefUnwindSafe for SimReport
impl Send for SimReport
impl Sync for SimReport
impl Unpin for SimReport
impl UnsafeUnpin for SimReport
impl UnwindSafe for SimReport
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