#[repr(C)]pub struct imdct_state {
pub n: c_int,
pub log2_n: c_int,
pub a: [f32; 4096],
pub b: [f32; 4096],
pub c: [f32; 2048],
pub reversed: [cc_uint32; 1024],
}
Fields§
§n: c_int
§log2_n: c_int
§a: [f32; 4096]
§b: [f32; 4096]
§c: [f32; 2048]
§reversed: [cc_uint32; 1024]
Trait Implementations§
Source§impl Clone for imdct_state
impl Clone for imdct_state
Source§fn clone(&self) -> imdct_state
fn clone(&self) -> imdct_state
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 imdct_state
impl Debug for imdct_state
Source§impl PartialEq for imdct_state
impl PartialEq for imdct_state
impl Copy for imdct_state
impl StructuralPartialEq for imdct_state
Auto Trait Implementations§
impl Freeze for imdct_state
impl RefUnwindSafe for imdct_state
impl Send for imdct_state
impl Sync for imdct_state
impl Unpin for imdct_state
impl UnwindSafe for imdct_state
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