pub struct PcmCodecDetails {
pub format_flags: u8,
pub sample_size: u8,
}Expand description
Parsed PCM configuration details.
Fields§
§format_flags: u8PCM format flags from pcmC.
sample_size: u8PCM sample size from pcmC.
Trait Implementations§
Source§impl Clone for PcmCodecDetails
impl Clone for PcmCodecDetails
Source§fn clone(&self) -> PcmCodecDetails
fn clone(&self) -> PcmCodecDetails
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 moreSource§impl Debug for PcmCodecDetails
impl Debug for PcmCodecDetails
Source§impl Default for PcmCodecDetails
impl Default for PcmCodecDetails
Source§fn default() -> PcmCodecDetails
fn default() -> PcmCodecDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PcmCodecDetails
impl<'de> Deserialize<'de> for PcmCodecDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PcmCodecDetails
impl PartialEq for PcmCodecDetails
Source§fn eq(&self, other: &PcmCodecDetails) -> bool
fn eq(&self, other: &PcmCodecDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PcmCodecDetails
impl Serialize for PcmCodecDetails
impl Eq for PcmCodecDetails
impl StructuralPartialEq for PcmCodecDetails
Auto Trait Implementations§
impl Freeze for PcmCodecDetails
impl RefUnwindSafe for PcmCodecDetails
impl Send for PcmCodecDetails
impl Sync for PcmCodecDetails
impl Unpin for PcmCodecDetails
impl UnsafeUnpin for PcmCodecDetails
impl UnwindSafe for PcmCodecDetails
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