gstreamer_video

Struct VideoCapsBuilder

Source
pub struct VideoCapsBuilder<T> { /* private fields */ }

Implementations§

Source§

impl VideoCapsBuilder<NoFeature>

Source

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.

Source

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.

Source

pub fn for_encoding_from_static(encoding: impl AsRef<GStr> + 'static) -> 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.

Source

pub fn for_encoding_from_id(encoding: impl AsRef<IdStr>) -> 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.

Source

pub fn any_features(self) -> VideoCapsBuilder<HasFeatures>

Source

pub fn features( self, features: impl IntoIterator<Item = impl IntoGStr>, ) -> VideoCapsBuilder<HasFeatures>

Source

pub fn features_from_statics( self, features: impl IntoIterator<Item = impl AsRef<GStr> + 'static>, ) -> VideoCapsBuilder<HasFeatures>

Source

pub fn features_from_ids( self, features: impl IntoIterator<Item = impl AsRef<IdStr>>, ) -> VideoCapsBuilder<HasFeatures>

Source§

impl<T> VideoCapsBuilder<T>

Source

pub fn format(self, format: VideoFormat) -> Self

Source

pub fn format_if(self, format: VideoFormat, predicate: bool) -> Self

Source

pub fn format_if_some(self, format: Option<VideoFormat>) -> Self

Source

pub fn format_list(self, formats: impl IntoIterator<Item = VideoFormat>) -> Self

Source

pub fn format_list_if( self, formats: impl IntoIterator<Item = VideoFormat>, predicate: bool, ) -> Self

Source

pub fn format_list_if_some( self, formats: Option<impl IntoIterator<Item = VideoFormat>>, ) -> Self

Source

pub fn format_list_if_not_empty( self, formats: impl IntoIterator<Item = VideoFormat>, ) -> Self

Source

pub fn width(self, width: i32) -> Self

Source

pub fn width_if(self, width: i32, predicate: bool) -> Self

Source

pub fn width_if_some(self, width: Option<i32>) -> Self

Source

pub fn width_range(self, widths: impl RangeBounds<i32>) -> Self

Source

pub fn width_range_if_some(self, widths: Option<impl RangeBounds<i32>>) -> Self

Source

pub fn width_range_if( self, widths: impl RangeBounds<i32>, predicate: bool, ) -> Self

Source

pub fn width_list(self, widths: impl IntoIterator<Item = i32>) -> Self

Source

pub fn width_list_if( self, widths: impl IntoIterator<Item = i32>, predicate: bool, ) -> Self

Source

pub fn width_list_if_some( self, widths: Option<impl IntoIterator<Item = i32>>, ) -> Self

Source

pub fn width_list_if_not_empty( self, widths: impl IntoIterator<Item = i32>, ) -> Self

Source

pub fn height(self, height: i32) -> Self

Source

pub fn height_if(self, height: i32, predicate: bool) -> Self

Source

pub fn height_if_some(self, height: Option<i32>) -> Self

Source

pub fn height_range(self, heights: impl RangeBounds<i32>) -> Self

Source

pub fn height_range_if( self, heights: impl RangeBounds<i32>, predicate: bool, ) -> Self

Source

pub fn height_range_if_some( self, heights: Option<impl RangeBounds<i32>>, ) -> Self

Source

pub fn height_list(self, heights: impl IntoIterator<Item = i32>) -> Self

Source

pub fn height_list_if( self, heights: impl IntoIterator<Item = i32>, predicate: bool, ) -> Self

Source

pub fn height_list_if_some( self, heights: Option<impl IntoIterator<Item = i32>>, ) -> Self

Source

pub fn height_list_if_not_empty( self, heights: impl IntoIterator<Item = i32>, ) -> Self

Source

pub fn framerate(self, framerate: Fraction) -> Self

Source

pub fn framerate_if(self, framerate: Fraction, predicate: bool) -> Self

Source

pub fn framerate_if_some(self, framerate: Option<Fraction>) -> Self

Source

pub fn framerate_range(self, framerates: impl RangeBounds<Fraction>) -> Self

Source

pub fn framerate_range_if( self, framerates: impl RangeBounds<Fraction>, predicate: bool, ) -> Self

Source

pub fn framerate_range_if_some( self, framerates: Option<impl RangeBounds<Fraction>>, ) -> Self

Source

pub fn framerate_list( self, framerates: impl IntoIterator<Item = Fraction>, ) -> Self

Source

pub fn framerate_list_if( self, framerates: impl IntoIterator<Item = Fraction>, predicate: bool, ) -> Self

Source

pub fn framerate_list_if_some( self, framerates: Option<impl IntoIterator<Item = Fraction>>, ) -> Self

Source

pub fn framerate_list_if_not_empty( self, framerates: impl IntoIterator<Item = Fraction>, ) -> Self

Source

pub fn pixel_aspect_ratio(self, pixel_aspect_ratio: Fraction) -> Self

Source

pub fn pixel_aspect_ratio_if( self, pixel_aspect_ratio: Fraction, predicate: bool, ) -> Self

Source

pub fn pixel_aspect_ratio_if_some( self, pixel_aspect_ratio: Option<Fraction>, ) -> Self

Source

pub fn pixel_aspect_ratio_range( self, pixel_aspect_ratios: impl RangeBounds<Fraction>, ) -> Self

Source

pub fn pixel_aspect_ratio_range_if( self, pixel_aspect_ratios: impl RangeBounds<Fraction>, predicate: bool, ) -> Self

Source

pub fn pixel_aspect_ratio_range_if_some( self, pixel_aspect_ratios: Option<impl RangeBounds<Fraction>>, ) -> Self

Source

pub fn pixel_aspect_ratio_list( self, pixel_aspect_ratios: impl IntoIterator<Item = Fraction>, ) -> Self

Source

pub fn pixel_aspect_ratio_list_if( self, pixel_aspect_ratios: impl IntoIterator<Item = Fraction>, predicate: bool, ) -> Self

Source

pub fn pixel_aspect_ratio_list_if_some( self, pixel_aspect_ratios: Option<impl IntoIterator<Item = Fraction>>, ) -> Self

Source

pub fn pixel_aspect_ratio_list_if_not_empty( self, pixel_aspect_ratios: impl IntoIterator<Item = Fraction>, ) -> Self

Source

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.

Source

pub fn field_with_static( self, name: impl AsRef<GStr> + 'static, value: impl Into<Value> + Send, ) -> Self

Sets field name to the given value value.

Overrides any default or previously defined value for name.

Source

pub fn field_with_id( self, name: impl AsRef<IdStr>, value: impl Into<Value> + Send, ) -> Self

Sets field name to the given value value.

Overrides any default or previously defined value for name.

Source

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.

Source

pub fn field_with_static_if( self, name: impl AsRef<GStr> + 'static, 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.

Source

pub fn field_with_id_if( self, name: impl AsRef<IdStr>, 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.

Source

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.

Source

pub fn field_with_static_if_some( self, name: impl AsRef<GStr> + 'static, 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.

Source

pub fn field_with_id_if_some( self, name: impl AsRef<IdStr>, 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.

Source

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 Items.

Overrides any default or previously defined value for name.

Source

pub fn field_with_static_from_iter<V: ValueType + Into<Value> + FromIterator<SendValue> + Send>( self, name: impl AsRef<GStr> + 'static, iter: impl IntoIterator<Item = impl ToSendValue>, ) -> Self

Sets field name using the given ValueType V built from iter’s the Items.

Overrides any default or previously defined value for name.

Source

pub fn field_with_id_from_iter<V: ValueType + Into<Value> + FromIterator<SendValue> + Send>( self, name: impl AsRef<IdStr>, iter: impl IntoIterator<Item = impl ToSendValue>, ) -> Self

Sets field name using the given ValueType V built from iter’s the Items.

Overrides any default or previously defined value for name.

Source

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.

Source

pub fn field_with_static_if_not_empty<V: ValueType + Into<Value> + FromIterator<SendValue> + Send>( self, name: impl AsRef<GStr> + 'static, 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.

Source

pub fn field_with_id_if_not_empty<V: ValueType + Into<Value> + FromIterator<SendValue> + Send>( self, name: impl AsRef<IdStr>, 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.

Source

pub fn build(self) -> Caps

Trait Implementations§

Source§

impl Default for VideoCapsBuilder<NoFeature>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.