Struct gstreamer::PipelineBuilder
source · pub struct PipelineBuilder {
builder: ObjectBuilder<'static, Pipeline>,
}
Expand description
A builder-pattern type to construct Pipeline
objects.
Fields§
§builder: ObjectBuilder<'static, Pipeline>
Implementations§
source§impl PipelineBuilder
impl PipelineBuilder
fn new() -> Self
pub fn auto_flush_bus(self, auto_flush_bus: bool) -> Self
pub fn delay(self, delay: u64) -> Self
pub fn latency(self, latency: ClockTime) -> Self
pub fn async_handling(self, async_handling: bool) -> Self
pub fn message_forward(self, message_forward: bool) -> Self
pub fn name(self, name: 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