#[repr(C)]pub struct LessThanAuxCols<T, const AUX_LEN: usize> {
pub lower_decomp: [T; AUX_LEN],
}
Expand description
These columns are owned by the SubAir. Typically used with T = AB::Var
.
AUX_LEN
is the number of AUX columns
we have that AUX_LEN = max_bits.div_ceil(bus.range_max_bits)
Fields§
§lower_decomp: [T; AUX_LEN]
Implementations§
Source§impl<T, const AUX_LEN: usize> LessThanAuxCols<T, AUX_LEN>
impl<T, const AUX_LEN: usize> LessThanAuxCols<T, AUX_LEN>
Sourcepub fn new(lower_decomp: [T; AUX_LEN]) -> Self
pub fn new(lower_decomp: [T; AUX_LEN]) -> Self
Constructs a new LessThanAuxCols
.
Trait Implementations§
Source§impl<T, const AUX_LEN: usize> Borrow<LessThanAuxCols<T, AUX_LEN>> for [T]
impl<T, const AUX_LEN: usize> Borrow<LessThanAuxCols<T, AUX_LEN>> for [T]
Source§fn borrow(&self) -> &LessThanAuxCols<T, AUX_LEN>
fn borrow(&self) -> &LessThanAuxCols<T, AUX_LEN>
Immutably borrows from an owned value. Read more
Source§impl<T, const AUX_LEN: usize> BorrowMut<LessThanAuxCols<T, AUX_LEN>> for [T]
impl<T, const AUX_LEN: usize> BorrowMut<LessThanAuxCols<T, AUX_LEN>> for [T]
Source§fn borrow_mut(&mut self) -> &mut LessThanAuxCols<T, AUX_LEN>
fn borrow_mut(&mut self) -> &mut LessThanAuxCols<T, AUX_LEN>
Mutably borrows from an owned value. Read more
Source§impl<T: Clone, const AUX_LEN: usize> Clone for LessThanAuxCols<T, AUX_LEN>
impl<T: Clone, const AUX_LEN: usize> Clone for LessThanAuxCols<T, AUX_LEN>
Source§fn clone(&self) -> LessThanAuxCols<T, AUX_LEN>
fn clone(&self) -> LessThanAuxCols<T, AUX_LEN>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<T: Copy, const AUX_LEN: usize> Copy for LessThanAuxCols<T, AUX_LEN>
Auto Trait Implementations§
impl<T, const AUX_LEN: usize> Freeze for LessThanAuxCols<T, AUX_LEN>where
T: Freeze,
impl<T, const AUX_LEN: usize> RefUnwindSafe for LessThanAuxCols<T, AUX_LEN>where
T: RefUnwindSafe,
impl<T, const AUX_LEN: usize> Send for LessThanAuxCols<T, AUX_LEN>where
T: Send,
impl<T, const AUX_LEN: usize> Sync for LessThanAuxCols<T, AUX_LEN>where
T: Sync,
impl<T, const AUX_LEN: usize> Unpin for LessThanAuxCols<T, AUX_LEN>where
T: Unpin,
impl<T, const AUX_LEN: usize> UnwindSafe for LessThanAuxCols<T, AUX_LEN>where
T: UnwindSafe,
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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