#[repr(C)]pub struct Wave {
pub frame_count: c_uint,
pub sample_rate: c_uint,
pub sample_size: c_uint,
pub channels: c_uint,
pub data: *const c_void,
}Expand description
Wave, audio wave data
Fields§
§frame_count: c_uint§sample_rate: c_uint§sample_size: c_uint§channels: c_uint§data: *const c_voidTrait Implementations§
Auto Trait Implementations§
impl !Send for Wave
impl !Sync for Wave
impl Freeze for Wave
impl RefUnwindSafe for Wave
impl Unpin for Wave
impl UnsafeUnpin 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