pub enum Bitrate {
BitsPerSecond(i32),
Max,
Auto,
}
Variants§
BitsPerSecond(i32)
Explicit bitrate choice (in bits/second).
Max
Maximum bitrate allowed (up to maximum number of bytes for the packet).
Auto
Default bitrate decided by the encoder (not recommended).
Trait Implementations§
impl Copy for Bitrate
impl Eq for Bitrate
impl StructuralPartialEq for Bitrate
Auto Trait Implementations§
impl Freeze for Bitrate
impl RefUnwindSafe for Bitrate
impl Send for Bitrate
impl Sync for Bitrate
impl Unpin for Bitrate
impl UnwindSafe for Bitrate
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