pub struct FFTBasedConvolutionZn<A = Global> { /* private fields */ }Expand description
§Availability
This API is marked as unstable and is only available when the unstable-enable crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.
Trait Implementations§
Source§impl<A> Clone for FFTBasedConvolutionZn<A>
impl<A> Clone for FFTBasedConvolutionZn<A>
Source§impl<R, A> ConvolutionAlgorithm<R> for FFTBasedConvolutionZn<A>
impl<R, A> ConvolutionAlgorithm<R> for FFTBasedConvolutionZn<A>
Source§fn compute_convolution<S: RingStore<Type = R>, V1: VectorView<R::Element>, V2: VectorView<R::Element>>(
&self,
lhs: V1,
rhs: V2,
dst: &mut [R::Element],
ring: S,
)
fn compute_convolution<S: RingStore<Type = R>, V1: VectorView<R::Element>, V2: VectorView<R::Element>>( &self, lhs: V1, rhs: V2, dst: &mut [R::Element], ring: S, )
Source§impl<'a, A> From<&'a FFTBasedConvolution<A>> for &'a FFTBasedConvolutionZn<A>where
A: Allocator,
impl<'a, A> From<&'a FFTBasedConvolution<A>> for &'a FFTBasedConvolutionZn<A>where
A: Allocator,
Source§fn from(value: &'a FFTBasedConvolution<A>) -> Self
fn from(value: &'a FFTBasedConvolution<A>) -> Self
Converts to this type from the input type.
Source§impl<'a, A> From<&'a FFTBasedConvolutionZn<A>> for &'a FFTBasedConvolution<A>where
A: Allocator,
impl<'a, A> From<&'a FFTBasedConvolutionZn<A>> for &'a FFTBasedConvolution<A>where
A: Allocator,
Source§fn from(value: &'a FFTBasedConvolutionZn<A>) -> Self
fn from(value: &'a FFTBasedConvolutionZn<A>) -> Self
Converts to this type from the input type.
Source§impl<A> From<FFTBasedConvolution<A>> for FFTBasedConvolutionZn<A>where
A: Allocator,
impl<A> From<FFTBasedConvolution<A>> for FFTBasedConvolutionZn<A>where
A: Allocator,
Source§fn from(value: FFTBasedConvolution<A>) -> Self
fn from(value: FFTBasedConvolution<A>) -> Self
Converts to this type from the input type.
Source§impl<A> From<FFTBasedConvolutionZn<A>> for FFTBasedConvolution<A>where
A: Allocator,
impl<A> From<FFTBasedConvolutionZn<A>> for FFTBasedConvolution<A>where
A: Allocator,
Source§fn from(value: FFTBasedConvolutionZn<A>) -> Self
fn from(value: FFTBasedConvolutionZn<A>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<A = Global> !Freeze for FFTBasedConvolutionZn<A>
impl<A = Global> !RefUnwindSafe for FFTBasedConvolutionZn<A>
impl<A> Send for FFTBasedConvolutionZn<A>where
A: Send,
impl<A = Global> !Sync for FFTBasedConvolutionZn<A>
impl<A> Unpin for FFTBasedConvolutionZn<A>where
A: Unpin,
impl<A> UnwindSafe for FFTBasedConvolutionZn<A>where
A: 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<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