pub enum RateControlMode {
Constqp,
Vbr,
Cbr,
LowdelayHq,
CbrHq,
VbrHq,
}
Variants§
Constqp
Constant QP mode
Vbr
Variable bitrate mode
Cbr
Constant bitrate mode
LowdelayHq
low-delay CBR, high quality
CbrHq
CBR, high quality (slower)
VbrHq
VBR, high quality (slower)
Trait Implementations§
source§impl Clone for RateControlMode
impl Clone for RateControlMode
source§fn clone(&self) -> RateControlMode
fn clone(&self) -> RateControlMode
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 RateControlMode
impl Debug for RateControlMode
impl Copy for RateControlMode
Auto Trait Implementations§
impl Freeze for RateControlMode
impl RefUnwindSafe for RateControlMode
impl Send for RateControlMode
impl Sync for RateControlMode
impl Unpin for RateControlMode
impl UnwindSafe for RateControlMode
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