Struct o1_utils::chunked_evaluations::ChunkedEvaluations
source · pub struct ChunkedEvaluations<F>where
F: PrimeField,{
pub chunks: Vec<F>,
pub size: usize,
}
Expand description
This struct contains multiple chunk evaluations.
Fields§
§chunks: Vec<F>
The chunk evaluations.
size: usize
Each chunk polynomial has degree size-1
.
Trait Implementations§
source§impl<F> Clone for ChunkedEvaluations<F>where
F: PrimeField + Clone,
impl<F> Clone for ChunkedEvaluations<F>where F: PrimeField + Clone,
source§fn clone(&self) -> ChunkedEvaluations<F>
fn clone(&self) -> ChunkedEvaluations<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<'de, F> Deserialize<'de> for ChunkedEvaluations<F>where
F: PrimeField,
impl<'de, F> Deserialize<'de> for ChunkedEvaluations<F>where F: PrimeField,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<F> RefUnwindSafe for ChunkedEvaluations<F>where F: RefUnwindSafe,
impl<F> Send for ChunkedEvaluations<F>
impl<F> Sync for ChunkedEvaluations<F>
impl<F> Unpin for ChunkedEvaluations<F>where F: Unpin,
impl<F> UnwindSafe for ChunkedEvaluations<F>where F: 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