pub enum AudioChoice {
Keep,
Bitrate(u64),
Drop,
}Expand description
What to do with the audio track inside a video.
Variants§
Keep
Keep the track, re-encoding at a sensible (budget-aware) bitrate.
Bitrate(u64)
Keep the track at an explicit bitrate in bits/s.
Drop
Drop the audio entirely.
Trait Implementations§
Source§impl Clone for AudioChoice
impl Clone for AudioChoice
Source§fn clone(&self) -> AudioChoice
fn clone(&self) -> AudioChoice
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 moreimpl Copy for AudioChoice
Source§impl Debug for AudioChoice
impl Debug for AudioChoice
impl Eq for AudioChoice
Source§impl PartialEq for AudioChoice
impl PartialEq for AudioChoice
impl StructuralPartialEq for AudioChoice
Auto Trait Implementations§
impl Freeze for AudioChoice
impl RefUnwindSafe for AudioChoice
impl Send for AudioChoice
impl Sync for AudioChoice
impl Unpin for AudioChoice
impl UnsafeUnpin for AudioChoice
impl UnwindSafe for AudioChoice
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