pub struct AudioSampleEntry {
pub channelcount: u32,
pub samplesize: u16,
pub samplerate: f64,
pub codec_specific: AudioCodecSpecific,
pub protection_info: Vec<ProtectionSchemeInfoBox>,
/* private fields */
}
Fields§
§channelcount: u32
§samplesize: u16
§samplerate: f64
§codec_specific: AudioCodecSpecific
§protection_info: Vec<ProtectionSchemeInfoBox>
Trait Implementations§
Source§impl Clone for AudioSampleEntry
impl Clone for AudioSampleEntry
Source§fn clone(&self) -> AudioSampleEntry
fn clone(&self) -> AudioSampleEntry
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 moreAuto Trait Implementations§
impl Freeze for AudioSampleEntry
impl RefUnwindSafe for AudioSampleEntry
impl Send for AudioSampleEntry
impl Sync for AudioSampleEntry
impl Unpin for AudioSampleEntry
impl UnwindSafe for AudioSampleEntry
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