#[repr(C)]pub struct audio_data {
pub data: [*mut u8; 8],
pub frames: u32,
pub timestamp: u64,
}
Fields§
§data: [*mut u8; 8]
§frames: u32
§timestamp: u64
Trait Implementations§
Source§impl Clone for audio_data
impl Clone for audio_data
Source§fn clone(&self) -> audio_data
fn clone(&self) -> audio_data
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 audio_data
impl Debug for audio_data
Source§impl Ord for audio_data
impl Ord for audio_data
Source§fn cmp(&self, other: &audio_data) -> Ordering
fn cmp(&self, other: &audio_data) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for audio_data
impl PartialEq for audio_data
Source§impl PartialOrd for audio_data
impl PartialOrd for audio_data
impl Copy for audio_data
impl Eq for audio_data
impl StructuralPartialEq for audio_data
Auto Trait Implementations§
impl Freeze for audio_data
impl RefUnwindSafe for audio_data
impl !Send for audio_data
impl !Sync for audio_data
impl Unpin for audio_data
impl UnwindSafe for audio_data
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