Analysis

Trait Analysis 

Source
pub trait Analysis<'a, I: Instantiable>
where Self: Sized + 'a,
{ // Required method fn build(netlist: &'a Netlist<I>) -> Result<Self, Error>; }
Expand description

A common trait of analyses than can be performed on a netlist. An analysis becomes stale when the netlist is modified.

Required Methods§

Source

fn build(netlist: &'a Netlist<I>) -> Result<Self, Error>

Construct the analysis to the current state of the netlist.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'a, I> Analysis<'a, I> for FanOutTable<'a, I>
where I: Instantiable,

Source§

impl<'a, I> Analysis<'a, I> for SimpleCombDepth<'a, I>
where I: Instantiable,