#[repr(C)]pub struct AudioBuffer {
pub mNumberChannels: UInt32,
pub mDataByteSize: UInt32,
pub mData: *mut c_void,
}Expand description
Apple SDK struct AudioBuffer.
Fields§
§mNumberChannels: UInt32§mDataByteSize: UInt32§mData: *mut c_voidTrait Implementations§
Source§impl Clone for AudioBuffer
impl Clone for AudioBuffer
Source§fn clone(&self) -> AudioBuffer
fn clone(&self) -> AudioBuffer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AudioBuffer
Auto Trait Implementations§
impl !Send for AudioBuffer
impl !Sync for AudioBuffer
impl Freeze for AudioBuffer
impl RefUnwindSafe for AudioBuffer
impl Unpin for AudioBuffer
impl UnsafeUnpin for AudioBuffer
impl UnwindSafe for AudioBuffer
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