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 any_features(self) -> VideoCapsBuilder<HasFeatures>

source

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

source§

impl<T> VideoCapsBuilder<T>

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

pub fn framerate_list( 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_range( self, pixel_aspect_ratios: impl RangeBounds<Fraction> ) -> Self

source

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

source

pub fn field(self, name: &str, value: impl Into<Value> + Send) -> Self

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.