pub struct ProgramInfo<'a> {
pub metadata: &'a Metadata,
pub type_sizes: &'a TypeSizeMap,
pub circuits_info: &'a CircuitsInfo,
pub const_data_values: &'a dyn Fn(&ConcreteTypeId) -> Vec<BigInt>,
}
Expand description
Information in the program level required for compiling an invocation.
Fields§
§metadata: &'a Metadata
§type_sizes: &'a TypeSizeMap
§circuits_info: &'a CircuitsInfo
Information about the circuits in the program.
const_data_values: &'a dyn Fn(&ConcreteTypeId) -> Vec<BigInt>
Returns the given a const type returns a vector of cells value representing it.
Auto Trait Implementations§
impl<'a> Freeze for ProgramInfo<'a>
impl<'a> !RefUnwindSafe for ProgramInfo<'a>
impl<'a> !Send for ProgramInfo<'a>
impl<'a> !Sync for ProgramInfo<'a>
impl<'a> Unpin for ProgramInfo<'a>
impl<'a> !UnwindSafe for ProgramInfo<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more