#[repr(C)]pub struct aec_stream {
pub next_in: *const c_uchar,
pub avail_in: usize,
pub total_in: usize,
pub next_out: *mut c_uchar,
pub avail_out: usize,
pub total_out: usize,
pub bits_per_sample: c_uint,
pub block_size: c_uint,
pub rsi: c_uint,
pub flags: c_uint,
pub state: *mut internal_state,
}Fields§
§next_in: *const c_uchar§avail_in: usize§total_in: usize§next_out: *mut c_uchar§avail_out: usize§total_out: usize§bits_per_sample: c_uint§block_size: c_uint§rsi: c_uint§flags: c_uint§state: *mut internal_stateTrait Implementations§
Source§impl Clone for aec_stream
impl Clone for aec_stream
Source§fn clone(&self) -> aec_stream
fn clone(&self) -> aec_stream
Returns a duplicate 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 aec_stream
impl Debug for aec_stream
impl Copy for aec_stream
Auto Trait Implementations§
impl Freeze for aec_stream
impl RefUnwindSafe for aec_stream
impl !Send for aec_stream
impl !Sync for aec_stream
impl Unpin for aec_stream
impl UnwindSafe for aec_stream
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