[][src]Struct leo_ast::input::program_input::main_input::MainInput

pub struct MainInput { /* fields omitted */ }

Implementations

impl MainInput[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 insert(&mut self, key: String, value: Option<InputValue>)[src]

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

Parses main input definitions and stores them in self.

pub fn get(&self, name: &str) -> Option<Option<InputValue>>[src]

Returns an Option of the main function input at name

Trait Implementations

impl Clone for MainInput[src]

impl Default for MainInput[src]

impl Eq for MainInput[src]

impl PartialEq<MainInput> for MainInput[src]

impl StructuralEq for MainInput[src]

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