[][src]Struct leo_ast::input::program_state::public_state::public_state::PublicState

pub struct PublicState { /* fields omitted */ }

Implementations

impl PublicState[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,
    sections: Vec<Section<'_>>
) -> Result<(), InputParserError>
[src]

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

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

Returns the runtime state input values

Trait Implementations

impl Clone for PublicState[src]

impl Default for PublicState[src]

impl Eq for PublicState[src]

impl PartialEq<PublicState> for PublicState[src]

impl StructuralEq for PublicState[src]

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