[][src]Struct leo_typed::input::program_input::program_input::ProgramInput

pub struct ProgramInput {
    pub main: MainInput,
    // some fields omitted
}

Fields

main: MainInput

Implementations

impl ProgramInput[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 values.

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

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

Parse each input included in a file and store them in self.

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

Returns the main function input value with the given name

pub fn get_registers(&self) -> &Registers[src]

Returns the runtime register input values

Trait Implementations

impl Clone for ProgramInput[src]

impl Default for ProgramInput[src]

impl Eq for ProgramInput[src]

impl PartialEq<ProgramInput> for ProgramInput[src]

impl StructuralEq for ProgramInput[src]

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