[][src]Struct leo_ast::input::program_state::public_state::state::State

pub struct State { /* fields omitted */ }

An input section declared in an input file with [$name]

Implementations

impl State[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 is_present(&self) -> bool[src]

Returns true if the main function contains the $name variable.

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

Parses register input definitions and stores them in self. This function is called if the main function input contains the $name variable.

pub fn values(&self) -> IndexMap<Parameter, Option<InputValue>>[src]

Returns this section's IndexMap of values

Trait Implementations

impl Clone for State[src]

impl Default for State[src]

impl Eq for State[src]

impl PartialEq<State> for State[src]

impl StructuralEq for State[src]

impl StructuralPartialEq for State[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>,