pub struct AdpcmMsData {
pub samples_per_block: u16,
pub num_coeff: u16,
pub coeffs: [AdpcmCoeffSet; 7],
}
Expand description
- The extension data for ADPCM-MS
Fields§
§samples_per_block: u16
§num_coeff: u16
§coeffs: [AdpcmCoeffSet; 7]
Implementations§
Trait Implementations§
Source§impl Clone for AdpcmMsData
impl Clone for AdpcmMsData
Source§fn clone(&self) -> AdpcmMsData
fn clone(&self) -> AdpcmMsData
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 AdpcmMsData
impl Debug for AdpcmMsData
Source§impl Default for AdpcmMsData
impl Default for AdpcmMsData
impl Copy for AdpcmMsData
Auto Trait Implementations§
impl Freeze for AdpcmMsData
impl RefUnwindSafe for AdpcmMsData
impl Send for AdpcmMsData
impl Sync for AdpcmMsData
impl Unpin for AdpcmMsData
impl UnwindSafe for AdpcmMsData
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