[][src]Struct xc2par::InputGraph

pub struct InputGraph {
    pub mcs: ObjPool<InputGraphMacrocell>,
    pub pterms: ObjPool<InputGraphPTerm>,
    pub bufg_clks: ObjPool<InputGraphBufgClk>,
    pub bufg_gts: ObjPool<InputGraphBufgGTS>,
    pub bufg_gsr: ObjPool<InputGraphBufgGSR>,
}

Fields

mcs: ObjPool<InputGraphMacrocell>pterms: ObjPool<InputGraphPTerm>bufg_clks: ObjPool<InputGraphBufgClk>bufg_gts: ObjPool<InputGraphBufgGTS>bufg_gsr: ObjPool<InputGraphBufgGSR>

Methods

impl InputGraph[src]

pub fn from_intermed_graph<L: Into<Option<Logger>>>(
    g: &IntermediateGraph,
    logger: L
) -> Result<Self, IntermedToInputError>
[src]

Trait Implementations

impl Debug for InputGraph[src]

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

impl Eq for InputGraph[src]

impl Hash for InputGraph[src]

impl PartialEq<InputGraph> for InputGraph[src]

impl Serialize for InputGraph[src]

impl StructuralEq for InputGraph[src]

impl StructuralPartialEq for InputGraph[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, 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.