[][src]Struct xc2par::OutputGraph

pub struct OutputGraph {
    pub mcs: ObjPool<OutputGraphMacrocell>,
    pub pterms: ObjPool<OutputGraphPTerm>,
    pub bufg_clks: ObjPool<OutputGraphBufgClk>,
    pub bufg_gts: ObjPool<OutputGraphBufgGTS>,
    pub bufg_gsr: ObjPool<OutputGraphBufgGSR>,
    pub zia: Vec<PARZIAAssignment>,
}

Fields

mcs: ObjPool<OutputGraphMacrocell>pterms: ObjPool<OutputGraphPTerm>bufg_clks: ObjPool<OutputGraphBufgClk>bufg_gts: ObjPool<OutputGraphBufgGTS>bufg_gsr: ObjPool<OutputGraphBufgGSR>zia: Vec<PARZIAAssignment>

Methods

impl OutputGraph[src]

pub fn from_input_graph(gi: &InputGraph) -> Self[src]

Trait Implementations

impl Clone for OutputGraph[src]

impl Debug for OutputGraph[src]

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

impl Eq for OutputGraph[src]

impl Hash for OutputGraph[src]

impl PartialEq<OutputGraph> for OutputGraph[src]

impl Serialize for OutputGraph[src]

impl StructuralEq for OutputGraph[src]

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