pub struct IFFTPrecomputation<F: FftField> { /* private fields */ }
Expand description
An iterator over the elements of the domain.
Implementations§
Source§impl<F: FftField> IFFTPrecomputation<F>
impl<F: FftField> IFFTPrecomputation<F>
pub fn precomputation_for_subdomain<'a>( &'a self, domain: &EvaluationDomain<F>, ) -> Option<Cow<'a, Self>>
Trait Implementations§
Source§impl<F: FftField> CanonicalDeserialize for IFFTPrecomputation<F>
impl<F: FftField> CanonicalDeserialize for IFFTPrecomputation<F>
fn deserialize_with_mode<R: Read>( reader: R, compress: Compress, validate: Validate, ) -> Result<Self, SerializationError>
fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_compressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
Source§impl<F: FftField> CanonicalSerialize for IFFTPrecomputation<F>
impl<F: FftField> CanonicalSerialize for IFFTPrecomputation<F>
fn serialize_with_mode<W: Write>( &self, writer: W, compress: Compress, ) -> Result<(), SerializationError>
fn serialized_size(&self, compress: Compress) -> usize
fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn compressed_size(&self) -> usize
fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn uncompressed_size(&self) -> usize
Source§impl<F: Clone + FftField> Clone for IFFTPrecomputation<F>
impl<F: Clone + FftField> Clone for IFFTPrecomputation<F>
Source§fn clone(&self) -> IFFTPrecomputation<F>
fn clone(&self) -> IFFTPrecomputation<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: FftField> Valid for IFFTPrecomputation<F>
impl<F: FftField> Valid for IFFTPrecomputation<F>
fn check(&self) -> Result<(), SerializationError>
fn batch_check<'a>(
batch: impl Iterator<Item = &'a Self> + Send,
) -> Result<(), SerializationError>where
Self: 'a,
impl<F: Eq + FftField> Eq for IFFTPrecomputation<F>
impl<F: FftField> StructuralPartialEq for IFFTPrecomputation<F>
Auto Trait Implementations§
impl<F> Freeze for IFFTPrecomputation<F>where
F: Freeze,
impl<F> RefUnwindSafe for IFFTPrecomputation<F>where
F: RefUnwindSafe,
impl<F> Send for IFFTPrecomputation<F>
impl<F> Sync for IFFTPrecomputation<F>
impl<F> Unpin for IFFTPrecomputation<F>where
F: Unpin,
impl<F> UnwindSafe for IFFTPrecomputation<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.