Struct gstreamer::PipelineBuilder
source · pub struct PipelineBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct Pipeline
objects.
Implementations§
source§impl PipelineBuilder
impl PipelineBuilder
pub fn auto_flush_bus(self, auto_flush_bus: bool) -> Self
pub fn auto_flush_bus_if_some(self, auto_flush_bus: Option<bool>) -> Self
pub fn delay(self, delay: u64) -> Self
pub fn delay_if(self, delay: u64, predicate: bool) -> Self
pub fn delay_if_some(self, delay: Option<u64>) -> Self
pub fn latency(self, latency: impl Into<Option<ClockTime>>) -> Self
pub fn latency_if( self, latency: impl Into<Option<ClockTime>>, predicate: bool, ) -> Self
pub fn latency_if_some(self, latency: Option<ClockTime>) -> Self
pub fn async_handling(self, async_handling: bool) -> Self
pub fn async_handling_if_some(self, async_handling: Option<bool>) -> Self
pub fn message_forward(self, message_forward: bool) -> Self
pub fn message_forward_if_some(self, message_forward: Option<bool>) -> Self
pub fn name(self, name: impl Into<GString>) -> Self
pub fn name_if(self, name: impl Into<GString>, predicate: bool) -> Self
pub fn name_if_some(self, name: Option<impl Into<GString>>) -> Self
Auto Trait Implementations§
impl Freeze for PipelineBuilder
impl RefUnwindSafe for PipelineBuilder
impl !Send for PipelineBuilder
impl !Sync for PipelineBuilder
impl Unpin for PipelineBuilder
impl UnwindSafe for PipelineBuilder
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