[][src]Struct leo_ast::input::program_state::private_state::private_state::PrivateState

pub struct PrivateState { /* fields omitted */ }

Implementations

impl PrivateState[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_record(&self) -> &Record[src]

Returns the runtime record input values

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

Returns the runtime state leaf input values

Trait Implementations

impl Clone for PrivateState[src]

impl Default for PrivateState[src]

impl Eq for PrivateState[src]

impl PartialEq<PrivateState> for PrivateState[src]

impl StructuralEq for PrivateState[src]

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