pub struct GeneratedAir {
pub name: String,
pub base: String,
pub sym: String,
pub nbits: u64,
pub cexp: i64,
pub n_ops: usize,
pub slots: u64,
}Expand description
One AIR whose kernel was generated.
Fields§
§name: String§base: String§sym: String§nbits: u64§cexp: i64§n_ops: usize§slots: u64Trait Implementations§
Source§impl Clone for GeneratedAir
impl Clone for GeneratedAir
Source§fn clone(&self) -> GeneratedAir
fn clone(&self) -> GeneratedAir
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GeneratedAir
impl RefUnwindSafe for GeneratedAir
impl Send for GeneratedAir
impl Sync for GeneratedAir
impl Unpin for GeneratedAir
impl UnsafeUnpin for GeneratedAir
impl UnwindSafe for GeneratedAir
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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