#[non_exhaustive]#[repr(u32)]pub enum fftw_r2r_kind_do_not_use_me {
FFTW_R2HC = 0,
FFTW_HC2R = 1,
FFTW_DHT = 2,
FFTW_REDFT00 = 3,
FFTW_REDFT01 = 4,
FFTW_REDFT10 = 5,
FFTW_REDFT11 = 6,
FFTW_RODFT00 = 7,
FFTW_RODFT01 = 8,
FFTW_RODFT10 = 9,
FFTW_RODFT11 = 10,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
FFTW_R2HC = 0
FFTW_HC2R = 1
FFTW_DHT = 2
FFTW_REDFT00 = 3
FFTW_REDFT01 = 4
FFTW_REDFT10 = 5
FFTW_REDFT11 = 6
FFTW_RODFT00 = 7
FFTW_RODFT01 = 8
FFTW_RODFT10 = 9
FFTW_RODFT11 = 10
Trait Implementations§
Source§impl Clone for fftw_r2r_kind_do_not_use_me
impl Clone for fftw_r2r_kind_do_not_use_me
Source§fn clone(&self) -> fftw_r2r_kind_do_not_use_me
fn clone(&self) -> fftw_r2r_kind_do_not_use_me
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 Debug for fftw_r2r_kind_do_not_use_me
impl Debug for fftw_r2r_kind_do_not_use_me
Source§impl Hash for fftw_r2r_kind_do_not_use_me
impl Hash for fftw_r2r_kind_do_not_use_me
impl Copy for fftw_r2r_kind_do_not_use_me
impl Eq for fftw_r2r_kind_do_not_use_me
impl StructuralPartialEq for fftw_r2r_kind_do_not_use_me
Auto Trait Implementations§
impl Freeze for fftw_r2r_kind_do_not_use_me
impl RefUnwindSafe for fftw_r2r_kind_do_not_use_me
impl Send for fftw_r2r_kind_do_not_use_me
impl Sync for fftw_r2r_kind_do_not_use_me
impl Unpin for fftw_r2r_kind_do_not_use_me
impl UnwindSafe for fftw_r2r_kind_do_not_use_me
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