Struct gstreamer_video::VideoInfoBuilder

source ·
pub struct VideoInfoBuilder<'a> { /* private fields */ }

Implementations§

source§

impl<'a> VideoInfoBuilder<'a>

source

pub fn build(self) -> Result<VideoInfo, BoolError>

source

pub fn interlace_mode( self, interlace_mode: VideoInterlaceMode, ) -> VideoInfoBuilder<'a>

source

pub fn interlace_mode_if( self, interlace_mode: VideoInterlaceMode, predicate: bool, ) -> VideoInfoBuilder<'a>

source

pub fn interlace_mode_if_some( self, interlace_mode: Option<VideoInterlaceMode>, ) -> VideoInfoBuilder<'a>

source

pub fn flags(self, flags: VideoFlags) -> Self

source

pub fn flags_if(self, flags: VideoFlags, predicate: bool) -> Self

source

pub fn flags_if_some(self, flags: Option<VideoFlags>) -> Self

source

pub fn size(self, size: usize) -> Self

source

pub fn size_if(self, size: usize, predicate: bool) -> Self

source

pub fn size_if_some(self, size: Option<usize>) -> Self

source

pub fn views(self, views: u32) -> Self

source

pub fn views_if(self, views: u32, predicate: bool) -> Self

source

pub fn views_if_some(self, views: Option<u32>) -> Self

source

pub fn chroma_site(self, chroma_site: VideoChromaSite) -> Self

source

pub fn chroma_site_if( self, chroma_site: VideoChromaSite, predicate: bool, ) -> Self

source

pub fn chroma_site_if_some(self, chroma_site: Option<VideoChromaSite>) -> Self

source

pub fn colorimetry( self, colorimetry: &'a VideoColorimetry, ) -> VideoInfoBuilder<'a>

source

pub fn colorimetry_if( self, colorimetry: &'a VideoColorimetry, predicate: bool, ) -> VideoInfoBuilder<'a>

source

pub fn colorimetry_if_some( self, colorimetry: Option<&'a VideoColorimetry>, ) -> VideoInfoBuilder<'a>

source

pub fn par<T: Into<Fraction>>(self, par: T) -> Self

source

pub fn par_if<T: Into<Fraction>>(self, par: T, predicate: bool) -> Self

source

pub fn par_if_some<T: Into<Fraction>>(self, par: Option<T>) -> Self

source

pub fn fps<T: Into<Fraction>>(self, fps: T) -> Self

source

pub fn fps_if<T: Into<Fraction>>(self, fps: T, predicate: bool) -> Self

source

pub fn fps_if_some<T: Into<Fraction>>(self, fps: Option<T>) -> Self

source

pub fn offset(self, offset: &'a [usize]) -> VideoInfoBuilder<'a>

source

pub fn offset_if( self, offset: &'a [usize], predicate: bool, ) -> VideoInfoBuilder<'a>

source

pub fn offset_if_some(self, offset: Option<&'a [usize]>) -> VideoInfoBuilder<'a>

source

pub fn stride(self, stride: &'a [i32]) -> VideoInfoBuilder<'a>

source

pub fn stride_if( self, stride: &'a [i32], predicate: bool, ) -> VideoInfoBuilder<'a>

source

pub fn stride_if_some(self, stride: Option<&'a [i32]>) -> VideoInfoBuilder<'a>

source

pub fn multiview_mode(self, multiview_mode: VideoMultiviewMode) -> Self

source

pub fn multiview_mode_if( self, multiview_mode: VideoMultiviewMode, predicate: bool, ) -> Self

source

pub fn multiview_mode_if_some( self, multiview_mode: Option<VideoMultiviewMode>, ) -> Self

source

pub fn multiview_flags(self, multiview_flags: VideoMultiviewFlags) -> Self

source

pub fn multiview_flags_if( self, multiview_flags: VideoMultiviewFlags, predicate: bool, ) -> Self

source

pub fn multiview_flags_if_some( self, multiview_flags: Option<VideoMultiviewFlags>, ) -> Self

source

pub fn field_order(self, field_order: VideoFieldOrder) -> Self

source

pub fn field_order_if( self, field_order: VideoFieldOrder, predicate: bool, ) -> Self

source

pub fn field_order_if_some(self, field_order: Option<VideoFieldOrder>) -> Self

Trait Implementations§

source§

impl<'a> Debug for VideoInfoBuilder<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for VideoInfoBuilder<'a>

§

impl<'a> RefUnwindSafe for VideoInfoBuilder<'a>

§

impl<'a> Send for VideoInfoBuilder<'a>

§

impl<'a> Sync for VideoInfoBuilder<'a>

§

impl<'a> Unpin for VideoInfoBuilder<'a>

§

impl<'a> UnwindSafe for VideoInfoBuilder<'a>

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

§

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.