[−][src]Struct mech_core::Block
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<&Table>[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]
&mut self,
store: &mut Interner,
table: &TableId,
indices: &Vec<(Option<Parameter>, Option<Parameter>)>
) -> Table
pub fn solve(
&mut self,
store: &mut Interner,
functions: &HashMap<String, Option<extern "C" fn(_: Vec<(String, Table)>) -> Table>>
)[src]
&mut self,
store: &mut Interner,
functions: &HashMap<String, Option<extern "C" fn(_: Vec<(String, Table)>) -> Table>>
)
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,