Struct fftw::plan::Plan[][src]

pub struct Plan<A, B, Plan: PlanSpec> { /* fields omitted */ }

Typed wrapper of fftw_plan

The plan in FFTW manages the contains all information necessary to compute the transform, including the pointers to the input and output arrays. However, this wrapper does not modify this pointer once after the plan is created since it should be unsafe in terms of Rust. Instead, this plan executes a transform for different arrays with new-array execute functions with related associated functions, e.g. C2CPlan::c2c.

Trait Implementations

impl<A, B, P: PlanSpec> Drop for Plan<A, B, P>
[src]

Executes the destructor for this type. Read more

impl C2CPlan for Plan<c64, c64, Plan64>
[src]

Create new plan

Execute complex-to-complex transform

Create new plan with aligned vector

impl C2CPlan for Plan<c32, c32, Plan32>
[src]

Create new plan

Execute complex-to-complex transform

Create new plan with aligned vector

impl R2CPlan for Plan<f64, c64, Plan64>
[src]

Create new plan

Execute real-to-complex transform

Create new plan with aligned vector

impl R2CPlan for Plan<f32, c32, Plan32>
[src]

Create new plan

Execute real-to-complex transform

Create new plan with aligned vector

impl C2RPlan for Plan<c64, f64, Plan64>
[src]

Create new plan

Execute complex-to-real transform

Create new plan with aligned vector

impl C2RPlan for Plan<c32, f32, Plan32>
[src]

Create new plan

Execute complex-to-real transform

Create new plan with aligned vector

Auto Trait Implementations

impl<A, B, Plan> Send for Plan<A, B, Plan> where
    A: Send,
    B: Send,
    Plan: Send

impl<A, B, Plan> Sync for Plan<A, B, Plan> where
    A: Sync,
    B: Sync,
    Plan: Sync