pub struct StreamSelection {
pub max_video_bits_per_second: Option<i64>,
pub min_video_bits_per_second: Option<i64>,
pub stream_order: Option<String>,
}Expand description
A StreamSelection configuration.
Fields§
§max_video_bits_per_second: Option<i64>The maximum video bitrate (bps) to include in output.
min_video_bits_per_second: Option<i64>The minimum video bitrate (bps) to include in output.
stream_order: Option<String>A directive that determines the order of streams in the output.
Trait Implementations§
Source§impl Clone for StreamSelection
impl Clone for StreamSelection
Source§fn clone(&self) -> StreamSelection
fn clone(&self) -> StreamSelection
Returns a duplicate 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 StreamSelection
impl Debug for StreamSelection
Source§impl Default for StreamSelection
impl Default for StreamSelection
Source§fn default() -> StreamSelection
fn default() -> StreamSelection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StreamSelection
impl<'de> Deserialize<'de> for StreamSelection
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 StreamSelection
impl PartialEq for StreamSelection
Source§impl Serialize for StreamSelection
impl Serialize for StreamSelection
impl StructuralPartialEq for StreamSelection
Auto Trait Implementations§
impl Freeze for StreamSelection
impl RefUnwindSafe for StreamSelection
impl Send for StreamSelection
impl Sync for StreamSelection
impl Unpin for StreamSelection
impl UnwindSafe for StreamSelection
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