[][src]Struct egp::blueprints::Blueprints

pub struct Blueprints {
    pub output: Blueprint,
    pub regular: Vec<Vec<Blueprint>>,
    pub terminal: Vec<Vec<Component>>,
    pub activities_by_group: Vec<usize>,
    pub total_activities: usize,
    pub weak_map: HashMap<String, String>,
    pub number_of_regulars: usize,
    pub number_of_terminals: usize,
}

Fields

output: Blueprintregular: Vec<Vec<Blueprint>>terminal: Vec<Vec<Component>>activities_by_group: Vec<usize>total_activities: usizeweak_map: HashMap<String, String>number_of_regulars: usizenumber_of_terminals: usize

Methods

impl Blueprints[src]

pub fn recompute_activities(
    regular: &mut Vec<Vec<Blueprint>>,
    terminal: &mut Vec<Vec<Blueprint>>
)
[src]

pub fn sum_group_lens<T>(groups: &Vec<Vec<T>>) -> usize[src]

pub fn from_groups(
    output: Blueprint,
    regular: Vec<Vec<Blueprint>>,
    terminal: Vec<Vec<Blueprint>>,
    weak_map: HashMap<String, String>
) -> Blueprints
[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,