[][src]Struct xc2par::IntermediateGraph

pub struct IntermediateGraph {
    pub nodes: ObjPool<IntermediateGraphNode>,
    pub nets: ObjPool<IntermediateGraphNet>,
    pub vdd_net: ObjPoolIndex<IntermediateGraphNet>,
    pub vss_net: ObjPoolIndex<IntermediateGraphNet>,
}

Fields

nodes: ObjPool<IntermediateGraphNode>nets: ObjPool<IntermediateGraphNet>vdd_net: ObjPoolIndex<IntermediateGraphNet>vss_net: ObjPoolIndex<IntermediateGraphNet>

Methods

impl IntermediateGraph[src]

pub fn from_yosys_netlist<L: Into<Option<Logger>>>(
    yosys_net: &Netlist,
    logger: L
) -> Result<Self, FrontendError>
[src]

pub fn gather_macrocells<L: Into<Option<Logger>>>(
    &self,
    logger: L
) -> Result<Vec<ObjPoolIndex<IntermediateGraphNode>>, GatherMacrocellError>
[src]

Trait Implementations

impl Clone for IntermediateGraph[src]

impl Debug for IntermediateGraph[src]

impl<'de> Deserialize<'de> for IntermediateGraph[src]

impl Eq for IntermediateGraph[src]

impl Hash for IntermediateGraph[src]

impl PartialEq<IntermediateGraph> for IntermediateGraph[src]

impl Serialize for IntermediateGraph[src]

impl StructuralEq for IntermediateGraph[src]

impl StructuralPartialEq for IntermediateGraph[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.