pub struct FFTMultiplier;Expand description
Fallback FFT multiplier for no_std environments
This implementation provides API compatibility when the std feature is not available. It falls back to basic schoolbook multiplication since FFT requires trigonometric functions and complex arithmetic which are not available in no_std.
Implementations§
Auto Trait Implementations§
impl Freeze for FFTMultiplier
impl RefUnwindSafe for FFTMultiplier
impl Send for FFTMultiplier
impl Sync for FFTMultiplier
impl Unpin for FFTMultiplier
impl UnwindSafe for FFTMultiplier
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