Struct gstreamer_base::UniqueFlowCombiner
source · pub struct UniqueFlowCombiner(/* private fields */);
Implementations§
source§impl UniqueFlowCombiner
impl UniqueFlowCombiner
pub fn new() -> Self
pub fn add_pad<P: IsA<Pad>>(&mut self, pad: &P)
pub fn clear(&mut self)
pub fn remove_pad<P: IsA<Pad>>(&mut self, pad: &P)
pub fn reset(&mut self)
pub fn update_flow( &mut self, fret: Result<FlowSuccess, FlowError>, ) -> Result<FlowSuccess, FlowError>
pub fn update_pad_flow<P: IsA<Pad>>( &mut self, pad: &P, fret: Result<FlowSuccess, FlowError>, ) -> Result<FlowSuccess, FlowError>
Trait Implementations§
source§impl Debug for UniqueFlowCombiner
impl Debug for UniqueFlowCombiner
source§impl Default for UniqueFlowCombiner
impl Default for UniqueFlowCombiner
impl Send for UniqueFlowCombiner
impl Sync for UniqueFlowCombiner
Auto Trait Implementations§
impl Freeze for UniqueFlowCombiner
impl RefUnwindSafe for UniqueFlowCombiner
impl Unpin for UniqueFlowCombiner
impl UnwindSafe for UniqueFlowCombiner
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