#[repr(C)]pub struct Wave {
pub frameCount: u32,
pub sampleRate: u32,
pub sampleSize: u32,
pub channels: u32,
pub data: *mut c_void,
}
Fields§
§frameCount: u32
§sampleRate: u32
§sampleSize: u32
§channels: u32
§data: *mut c_void
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Wave
impl RefUnwindSafe for Wave
impl !Send for Wave
impl !Sync for Wave
impl Unpin for Wave
impl UnwindSafe for Wave
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