Struct gstreamer_video::VideoCapsBuilder
source · pub struct VideoCapsBuilder<T> { /* private fields */ }
Implementations§
source§impl VideoCapsBuilder<NoFeature>
impl VideoCapsBuilder<NoFeature>
sourcepub fn new() -> Self
pub fn new() -> Self
Constructs an VideoCapsBuilder
for the “video/x-raw” encoding.
If left unchanged, the resulting Caps
will be initialized with:
- “video/x-raw” encoding.
- all available formats.
- maximum width range.
- maximum height range.
Use VideoCapsBuilder::for_encoding
to specify another encoding.
sourcepub fn for_encoding(encoding: impl IntoGStr) -> Self
pub fn for_encoding(encoding: impl IntoGStr) -> Self
Constructs an VideoCapsBuilder
for the specified encoding.
The resulting Caps
will use the encoding
argument as name
and will not contain any additional fields unless explicitly added.
pub fn any_features(self) -> VideoCapsBuilder<HasFeatures>
pub fn features( self, features: impl IntoIterator<Item = impl IntoGStr>, ) -> VideoCapsBuilder<HasFeatures>
source§impl<T> VideoCapsBuilder<T>
impl<T> VideoCapsBuilder<T>
pub fn format(self, format: VideoFormat) -> Self
pub fn format_if(self, format: VideoFormat, predicate: bool) -> Self
pub fn format_if_some(self, format: Option<VideoFormat>) -> Self
pub fn format_list(self, formats: impl IntoIterator<Item = VideoFormat>) -> Self
pub fn format_list_if( self, formats: impl IntoIterator<Item = VideoFormat>, predicate: bool, ) -> Self
pub fn format_list_if_some( self, formats: Option<impl IntoIterator<Item = VideoFormat>>, ) -> Self
pub fn format_list_if_not_empty( self, formats: impl IntoIterator<Item = VideoFormat>, ) -> Self
pub fn width(self, width: i32) -> Self
pub fn width_if(self, width: i32, predicate: bool) -> Self
pub fn width_if_some(self, width: Option<i32>) -> Self
pub fn width_range(self, widths: impl RangeBounds<i32>) -> Self
pub fn width_range_if_some(self, widths: Option<impl RangeBounds<i32>>) -> Self
pub fn width_range_if( self, widths: impl RangeBounds<i32>, predicate: bool, ) -> Self
pub fn width_list(self, widths: impl IntoIterator<Item = i32>) -> Self
pub fn width_list_if( self, widths: impl IntoIterator<Item = i32>, predicate: bool, ) -> Self
pub fn width_list_if_some( self, widths: Option<impl IntoIterator<Item = i32>>, ) -> Self
pub fn width_list_if_not_empty( self, widths: impl IntoIterator<Item = i32>, ) -> Self
pub fn height(self, height: i32) -> Self
pub fn height_if(self, height: i32, predicate: bool) -> Self
pub fn height_if_some(self, height: Option<i32>) -> Self
pub fn height_range(self, heights: impl RangeBounds<i32>) -> Self
pub fn height_range_if( self, heights: impl RangeBounds<i32>, predicate: bool, ) -> Self
pub fn height_range_if_some( self, heights: Option<impl RangeBounds<i32>>, ) -> Self
pub fn height_list(self, heights: impl IntoIterator<Item = i32>) -> Self
pub fn height_list_if( self, heights: impl IntoIterator<Item = i32>, predicate: bool, ) -> Self
pub fn height_list_if_some( self, heights: Option<impl IntoIterator<Item = i32>>, ) -> Self
pub fn height_list_if_not_empty( self, heights: impl IntoIterator<Item = i32>, ) -> Self
pub fn framerate(self, framerate: Fraction) -> Self
pub fn framerate_if(self, framerate: Fraction, predicate: bool) -> Self
pub fn framerate_if_some(self, framerate: Option<Fraction>) -> Self
pub fn framerate_range(self, framerates: impl RangeBounds<Fraction>) -> Self
pub fn framerate_range_if( self, framerates: impl RangeBounds<Fraction>, predicate: bool, ) -> Self
pub fn framerate_range_if_some( self, framerates: Option<impl RangeBounds<Fraction>>, ) -> Self
pub fn framerate_list( self, framerates: impl IntoIterator<Item = Fraction>, ) -> Self
pub fn framerate_list_if( self, framerates: impl IntoIterator<Item = Fraction>, predicate: bool, ) -> Self
pub fn framerate_list_if_some( self, framerates: Option<impl IntoIterator<Item = Fraction>>, ) -> Self
pub fn framerate_list_if_not_empty( self, framerates: impl IntoIterator<Item = Fraction>, ) -> Self
pub fn pixel_aspect_ratio(self, pixel_aspect_ratio: Fraction) -> Self
pub fn pixel_aspect_ratio_if( self, pixel_aspect_ratio: Fraction, predicate: bool, ) -> Self
pub fn pixel_aspect_ratio_if_some( self, pixel_aspect_ratio: Option<Fraction>, ) -> Self
pub fn pixel_aspect_ratio_range( self, pixel_aspect_ratios: impl RangeBounds<Fraction>, ) -> Self
pub fn pixel_aspect_ratio_range_if( self, pixel_aspect_ratios: impl RangeBounds<Fraction>, predicate: bool, ) -> Self
pub fn pixel_aspect_ratio_range_if_some( self, pixel_aspect_ratios: Option<impl RangeBounds<Fraction>>, ) -> Self
pub fn pixel_aspect_ratio_list( self, pixel_aspect_ratios: impl IntoIterator<Item = Fraction>, ) -> Self
pub fn pixel_aspect_ratio_list_if( self, pixel_aspect_ratios: impl IntoIterator<Item = Fraction>, predicate: bool, ) -> Self
pub fn pixel_aspect_ratio_list_if_some( self, pixel_aspect_ratios: Option<impl IntoIterator<Item = Fraction>>, ) -> Self
pub fn pixel_aspect_ratio_list_if_not_empty( self, pixel_aspect_ratios: impl IntoIterator<Item = Fraction>, ) -> Self
sourcepub fn field(self, name: impl IntoGStr, value: impl Into<Value> + Send) -> Self
pub fn field(self, name: impl IntoGStr, value: impl Into<Value> + Send) -> Self
Sets field name
to the given value value
.
Overrides any default or previously defined value for name
.
sourcepub fn field_if(
self,
name: impl IntoGStr,
value: impl Into<Value> + Send,
predicate: bool,
) -> Self
pub fn field_if( self, name: impl IntoGStr, value: impl Into<Value> + Send, predicate: bool, ) -> Self
Sets field name
to the given inner value if the predicate
evaluates to true
.
This has no effect if the predicate
evaluates to false
,
i.e. default or previous value for name
is kept.
sourcepub fn field_if_some(
self,
name: impl IntoGStr,
value: Option<impl Into<Value> + Send>,
) -> Self
pub fn field_if_some( self, name: impl IntoGStr, value: Option<impl Into<Value> + Send>, ) -> Self
Sets field name
to the given inner value if value
is Some
.
This has no effect if the value is None
, i.e. default or previous value for name
is kept.
sourcepub fn field_from_iter<V: ValueType + Into<Value> + FromIterator<SendValue> + Send>(
self,
name: impl IntoGStr,
iter: impl IntoIterator<Item = impl ToSendValue>,
) -> Self
pub fn field_from_iter<V: ValueType + Into<Value> + FromIterator<SendValue> + Send>( self, name: impl IntoGStr, iter: impl IntoIterator<Item = impl ToSendValue>, ) -> Self
Sets field name
using the given ValueType
V
built from iter
’s the Item
s.
Overrides any default or previously defined value for name
.
sourcepub fn field_if_not_empty<V: ValueType + Into<Value> + FromIterator<SendValue> + Send>(
self,
name: impl IntoGStr,
iter: impl IntoIterator<Item = impl ToSendValue>,
) -> Self
pub fn field_if_not_empty<V: ValueType + Into<Value> + FromIterator<SendValue> + Send>( self, name: impl IntoGStr, iter: impl IntoIterator<Item = impl ToSendValue>, ) -> Self
Sets field name
using the given ValueType
V
built from iter
’s Items, if
iter` is not empty.
This has no effect if iter
is empty, i.e. previous value for name
is unchanged.
pub fn build(self) -> Caps
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for VideoCapsBuilder<T>
impl<T> RefUnwindSafe for VideoCapsBuilder<T>where
T: RefUnwindSafe,
impl<T> Send for VideoCapsBuilder<T>where
T: Send,
impl<T> Sync for VideoCapsBuilder<T>where
T: Sync,
impl<T> Unpin for VideoCapsBuilder<T>where
T: Unpin,
impl<T> UnwindSafe for VideoCapsBuilder<T>where
T: UnwindSafe,
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more