Struct gstreamer::BinBuilder
source · pub struct BinBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct Bin
objects.
Implementations§
source§impl BinBuilder
impl BinBuilder
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 BinBuilder
impl RefUnwindSafe for BinBuilder
impl !Send for BinBuilder
impl !Sync for BinBuilder
impl Unpin for BinBuilder
impl UnwindSafe for BinBuilder
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