pub struct LogicalInteractions<F: Field> {
pub at_bus: BTreeMap<usize, HashMap<Vec<F>, Vec<(usize, InteractionType, F)>>>,
}
Expand description
The actual interactions that are sent/received during a single run of trace generation. For debugging purposes only.
Fields§
§at_bus: BTreeMap<usize, HashMap<Vec<F>, Vec<(usize, InteractionType, F)>>>
Bus index => (fields => (air_idx, interaction_type, count))
Trait Implementations§
Source§impl<F: Clone + Field> Clone for LogicalInteractions<F>
impl<F: Clone + Field> Clone for LogicalInteractions<F>
Source§fn clone(&self) -> LogicalInteractions<F>
fn clone(&self) -> LogicalInteractions<F>
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 moreSource§impl<F: Debug + Field> Debug for LogicalInteractions<F>
impl<F: Debug + Field> Debug for LogicalInteractions<F>
Source§impl<F: Default + Field> Default for LogicalInteractions<F>
impl<F: Default + Field> Default for LogicalInteractions<F>
Source§fn default() -> LogicalInteractions<F>
fn default() -> LogicalInteractions<F>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<F> Freeze for LogicalInteractions<F>
impl<F> RefUnwindSafe for LogicalInteractions<F>where
F: RefUnwindSafe,
impl<F> Send for LogicalInteractions<F>
impl<F> Sync for LogicalInteractions<F>
impl<F> Unpin for LogicalInteractions<F>
impl<F> UnwindSafe for LogicalInteractions<F>where
F: RefUnwindSafe,
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
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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