Struct gstreamer_video::VideoCapsBuilder
source · pub struct VideoCapsBuilder<T> {
builder: Builder<T>,
}
Fields§
§builder: Builder<T>
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_list(self, formats: impl IntoIterator<Item = VideoFormat>) -> Self
pub fn width(self, width: i32) -> Self
pub fn width_range(self, widths: impl RangeBounds<i32>) -> Self
pub fn width_list(self, widths: impl IntoIterator<Item = i32>) -> Self
pub fn height(self, height: i32) -> Self
pub fn height_range(self, heights: impl RangeBounds<i32>) -> Self
pub fn height_list(self, heights: impl IntoIterator<Item = i32>) -> Self
pub fn framerate(self, framerate: Fraction) -> Self
pub fn framerate_range(self, framerates: impl RangeBounds<Fraction>) -> Self
pub fn framerate_list( self, framerates: impl IntoIterator<Item = Fraction>, ) -> Self
pub fn pixel_aspect_ratio(self, pixel_aspect_ratio: Fraction) -> Self
pub fn pixel_aspect_ratio_range( self, pixel_aspect_ratios: impl RangeBounds<Fraction>, ) -> Self
pub fn pixel_aspect_ratio_list( self, pixel_aspect_ratios: impl IntoIterator<Item = Fraction>, ) -> Self
pub fn field(self, name: &str, value: impl Into<Value> + Send) -> Self
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
Mutably borrows from an owned value. Read more
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>
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 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>
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