pub struct GenSummary {
pub generated: Vec<GeneratedAir>,
pub skipped: Vec<(String, String)>,
pub placed: usize,
pub max_scratch_bytes: u64,
}Expand description
Outcome of a codegen run.
Fields§
§generated: Vec<GeneratedAir>§skipped: Vec<(String, String)>§placed: usize§max_scratch_bytes: u64Trait Implementations§
Source§impl Debug for GenSummary
impl Debug for GenSummary
Source§impl Default for GenSummary
impl Default for GenSummary
Source§fn default() -> GenSummary
fn default() -> GenSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GenSummary
impl RefUnwindSafe for GenSummary
impl Send for GenSummary
impl Sync for GenSummary
impl Unpin for GenSummary
impl UnsafeUnpin for GenSummary
impl UnwindSafe for GenSummary
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> 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