[][src]Struct leo_ast::input::program_state::program_state::ProgramState

pub struct ProgramState { /* fields omitted */ }

Implementations

impl ProgramState[src]

pub fn new() -> Self[src]

pub fn empty(&self) -> Self[src]

Returns an empty version of this struct with None values. Called during constraint synthesis to provide private input variables.

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

pub fn parse(&mut self, table: Table<'_>) -> Result<(), InputParserError>[src]

Parse all input variables included in a file and store them in self.

pub fn get_record(&self) -> &Record[src]

Returns the runtime record input values

pub fn get_state(&self) -> &State[src]

Returns the runtime state input values

pub fn get_state_leaf(&self) -> &StateLeaf[src]

Returns the runtime state leaf input values

Trait Implementations

impl Clone for ProgramState[src]

impl Default for ProgramState[src]

impl Eq for ProgramState[src]

impl PartialEq<ProgramState> for ProgramState[src]

impl StructuralEq for ProgramState[src]

impl StructuralPartialEq for ProgramState[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument 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.

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