[][src]Struct mech_core::Block

pub struct Block {
    pub id: usize,
    pub state: BlockState,
    pub name: String,
    pub text: String,
    pub ready: HashSet<Register>,
    pub updated: bool,
    pub plan: Vec<Constraint>,
    pub input_registers: HashSet<Register>,
    pub output_registers: HashSet<Register>,
    pub constraints: Vec<(String, Vec<Constraint>)>,
    pub errors: Vec<Error>,
    pub functions: HashSet<String>,
    // some fields omitted
}

Fields

id: usizestate: BlockStatename: Stringtext: Stringready: HashSet<Register>updated: boolplan: Vec<Constraint>input_registers: HashSet<Register>output_registers: HashSet<Register>constraints: Vec<(String, Vec<Constraint>)>errors: Vec<Error>functions: HashSet<String>

Methods

impl Block[src]

pub fn new() -> Block[src]

pub fn get_table(&self, table_id: u64) -> Option<&Rc<RefCell<Table>>>[src]

pub fn gen_block_id(&self) -> usize[src]

pub fn add_constraints(&mut self, constraint_tuple: (String, Vec<Constraint>))[src]

pub fn is_ready(&mut self) -> bool[src]

pub fn resolve_subscript(
    &mut self,
    store: &mut Interner,
    table: &TableId,
    indices: &Vec<(Option<Parameter>, Option<Parameter>)>
) -> Table
[src]

pub fn solve(
    &mut self,
    store: &mut Interner,
    functions: &HashMap<String, Option<extern "C" fn(_: Vec<(String, Table)>) -> Table>>
)
[src]

Trait Implementations

impl Clone for Block[src]

impl Debug for Block[src]

impl PartialEq<Block> for Block[src]

impl StructuralPartialEq for Block[src]

Auto Trait Implementations

impl !RefUnwindSafe for Block

impl !Send for Block

impl !Sync for Block

impl Unpin for Block

impl !UnwindSafe for Block

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> 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.