#[non_exhaustive]pub struct StreamSelectionBuilder { /* private fields */ }
Expand description
A builder for StreamSelection
.
Implementations§
source§impl StreamSelectionBuilder
impl StreamSelectionBuilder
sourcepub fn max_video_bits_per_second(self, input: i32) -> Self
pub fn max_video_bits_per_second(self, input: i32) -> Self
The maximum video bitrate (bps) to include in output.
sourcepub fn set_max_video_bits_per_second(self, input: Option<i32>) -> Self
pub fn set_max_video_bits_per_second(self, input: Option<i32>) -> Self
The maximum video bitrate (bps) to include in output.
sourcepub fn get_max_video_bits_per_second(&self) -> &Option<i32>
pub fn get_max_video_bits_per_second(&self) -> &Option<i32>
The maximum video bitrate (bps) to include in output.
sourcepub fn min_video_bits_per_second(self, input: i32) -> Self
pub fn min_video_bits_per_second(self, input: i32) -> Self
The minimum video bitrate (bps) to include in output.
sourcepub fn set_min_video_bits_per_second(self, input: Option<i32>) -> Self
pub fn set_min_video_bits_per_second(self, input: Option<i32>) -> Self
The minimum video bitrate (bps) to include in output.
sourcepub fn get_min_video_bits_per_second(&self) -> &Option<i32>
pub fn get_min_video_bits_per_second(&self) -> &Option<i32>
The minimum video bitrate (bps) to include in output.
sourcepub fn stream_order(self, input: StreamOrder) -> Self
pub fn stream_order(self, input: StreamOrder) -> Self
A directive that determines the order of streams in the output.
sourcepub fn set_stream_order(self, input: Option<StreamOrder>) -> Self
pub fn set_stream_order(self, input: Option<StreamOrder>) -> Self
A directive that determines the order of streams in the output.
sourcepub fn get_stream_order(&self) -> &Option<StreamOrder>
pub fn get_stream_order(&self) -> &Option<StreamOrder>
A directive that determines the order of streams in the output.
sourcepub fn build(self) -> StreamSelection
pub fn build(self) -> StreamSelection
Consumes the builder and constructs a StreamSelection
.
Trait Implementations§
source§impl Clone for StreamSelectionBuilder
impl Clone for StreamSelectionBuilder
source§fn clone(&self) -> StreamSelectionBuilder
fn clone(&self) -> StreamSelectionBuilder
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 StreamSelectionBuilder
impl Debug for StreamSelectionBuilder
source§impl Default for StreamSelectionBuilder
impl Default for StreamSelectionBuilder
source§fn default() -> StreamSelectionBuilder
fn default() -> StreamSelectionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for StreamSelectionBuilder
impl PartialEq for StreamSelectionBuilder
source§fn eq(&self, other: &StreamSelectionBuilder) -> bool
fn eq(&self, other: &StreamSelectionBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StreamSelectionBuilder
Auto Trait Implementations§
impl RefUnwindSafe for StreamSelectionBuilder
impl Send for StreamSelectionBuilder
impl Sync for StreamSelectionBuilder
impl Unpin for StreamSelectionBuilder
impl UnwindSafe for StreamSelectionBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.