pub struct AudioTrackConfig {
pub encoder_name: String,
pub bitrate: u32,
}Expand description
Details for a single audio track.
Fields§
§encoder_name: StringThe name of the audio codec being used (e.g., “aac”, “ac3”).
bitrate: u32The bitrate of the audio track.
Trait Implementations§
Source§impl Debug for AudioTrackConfig
impl Debug for AudioTrackConfig
Source§impl<'de> Deserialize<'de> for AudioTrackConfig
impl<'de> Deserialize<'de> for AudioTrackConfig
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
Auto Trait Implementations§
impl Freeze for AudioTrackConfig
impl RefUnwindSafe for AudioTrackConfig
impl Send for AudioTrackConfig
impl Sync for AudioTrackConfig
impl Unpin for AudioTrackConfig
impl UnwindSafe for AudioTrackConfig
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