Pipeline

Struct Pipeline 

Source
pub struct Pipeline(/* private fields */);

Trait Implementations§

Source§

impl BinClassExt<Pipeline> for PipelineClass

Source§

impl Clone for Pipeline

Source§

fn clone(&self) -> Pipeline

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Pipeline

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl ElementClassExt<Pipeline> for PipelineClass

Source§

fn add_pad_template(&mut self, pad_template: PadTemplate)

Source§

fn set_metadata( &mut self, long_name: &str, classification: &str, description: &str, author: &str, )

Source§

fn override_vfuncs(&mut self, _: &ClassInitToken)

Source§

impl Hash for Pipeline

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl ObjectClassExt<Pipeline> for PipelineClass

Source§

fn override_vfuncs(&mut self, _: &ClassInitToken)

Source§

fn install_properties(&mut self, properties: &[Property<'_>])

Source§

fn add_signal(&mut self, name: &str, arg_types: &[Type], ret_type: Type)

Source§

fn add_signal_with_accumulator<F>( &mut self, name: &str, arg_types: &[Type], ret_type: Type, accumulator: F, )
where F: Fn(&mut Value, &Value) -> bool + Send + Sync + 'static,

Source§

fn add_action_signal<F>( &mut self, name: &str, arg_types: &[Type], ret_type: Type, handler: F, )
where F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,

Source§

impl ObjectType for Pipeline

Source§

impl Ord for Pipeline

Source§

fn cmp(&self, other: &Pipeline) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T: IsA<Object>> PartialEq<T> for Pipeline

Source§

fn eq(&self, other: &T) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: IsA<Object>> PartialOrd<T> for Pipeline

Source§

fn partial_cmp(&self, other: &T) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PipelineClassExt<Pipeline> for PipelineClass

Source§

impl StaticType for Pipeline

Source§

fn static_type() -> Type

Returns the type identifier of Self.
Source§

impl Eq for Pipeline

Source§

impl IsA<Bin> for Pipeline

Source§

impl IsA<ChildProxy> for Pipeline

Source§

impl IsA<Element> for Pipeline

Source§

impl IsA<Object> for Pipeline

Source§

impl IsA<Object> for Pipeline

Source§

impl IsA<Pipeline> for Pipeline

Source§

impl Send for Pipeline

Source§

impl Sync for Pipeline

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AnyImpl for T
where T: Any,

Source§

impl<T> BinBase for T
where T: IsA<Element> + IsA<Bin> + ObjectType,

Source§

impl<O> BinExt for O
where O: IsA<Bin> + IsA<Object>,

Source§

fn add<P>(&self, element: &P) -> Result<(), BoolError>
where P: IsA<Element>,

Source§

fn find_unlinked_pad(&self, direction: PadDirection) -> Option<Pad>

Source§

fn get_by_interface(&self, iface: Type) -> Option<Element>

Source§

fn get_by_name(&self, name: &str) -> Option<Element>

Source§

fn get_by_name_recurse_up(&self, name: &str) -> Option<Element>

Source§

fn recalculate_latency(&self) -> Result<(), BoolError>

Source§

fn remove<P>(&self, element: &P) -> Result<(), BoolError>
where P: IsA<Element>,

Source§

fn sync_children_states(&self) -> Result<(), BoolError>

Source§

fn get_property_async_handling(&self) -> bool

Source§

fn set_property_async_handling(&self, async_handling: bool)

Source§

fn get_property_message_forward(&self) -> bool

Source§

fn set_property_message_forward(&self, message_forward: bool)

Source§

fn connect_do_latency<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O) -> bool + Send + Sync + 'static,

Source§

fn connect_element_added<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O, &Element) + Send + Sync + 'static,

Source§

fn connect_element_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O, &Element) + Send + Sync + 'static,

Source§

fn connect_property_async_handling_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O) + Send + Sync + 'static,

Source§

fn connect_property_message_forward_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O) + Send + Sync + 'static,

Source§

impl<O> BinExtManual for O
where O: IsA<Bin>,

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Cast for T
where T: IsA<Object>,

Source§

fn upcast<T>(self) -> T
where T: StaticType + UnsafeFrom<ObjectRef> + Wrapper, Self: IsA<T>,

Upcasts an object to a superclass or interface T. Read more
Source§

fn upcast_ref<T>(&self) -> &T
where T: StaticType + UnsafeFrom<ObjectRef> + Wrapper, Self: IsA<T>,

Upcasts an object to a reference of its superclass or interface T. Read more
Source§

fn downcast<T>(self) -> Result<T, Self>
where Self: Sized + Downcast<T>,

Tries to downcast to a subclass or interface implementor T. Read more
Source§

fn downcast_ref<T>(&self) -> Option<&T>
where Self: Sized + Downcast<T>,

Tries to downcast to a reference of its subclass or interface implementor T. Read more
Source§

fn is<T>(&self) -> bool
where T: StaticType,

Returns true if the object is an instance of (can be cast to) T.
Source§

fn dynamic_cast<T>(self) -> Result<T, Self>
where T: StaticType + UnsafeFrom<ObjectRef> + Wrapper,

Tries to cast to an object of type T. This handles upcasting, downcasting and casting between interface and interface implementors. All checks are performed at runtime, while downcast and upcast will do many checks at compile-time already. Read more
Source§

fn dynamic_cast_ref<T>(&self) -> Option<&T>
where T: StaticType + UnsafeFrom<ObjectRef> + Wrapper,

Tries to cast to reference to an object of type T. This handles upcasting, downcasting and casting between interface and interface implementors. All checks are performed at runtime, while downcast and upcast will do many checks at compile-time already. Read more
Source§

impl<O> ChildProxyExt for O
where O: IsA<ChildProxy> + IsA<Object>,

Source§

fn child_added<P>(&self, child: &P, name: &str)
where P: IsA<Object>,

Source§

fn child_removed<P>(&self, child: &P, name: &str)
where P: IsA<Object>,

Source§

fn get_child_by_index(&self, index: u32) -> Option<Object>

Source§

fn get_child_by_name(&self, name: &str) -> Option<Object>

Source§

fn get_children_count(&self) -> u32

Source§

fn connect_child_added<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O, &Object, &str) + Send + Sync + 'static,

Source§

fn connect_child_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O, &Object, &str) + Send + Sync + 'static,

Source§

impl<O> ChildProxyExtManual for O
where O: IsA<ChildProxy>,

Source§

fn get_child_property(&self, name: &str) -> Option<Value>

Source§

fn set_child_property( &self, name: &str, value: &dyn ToValue, ) -> Result<(), BoolError>

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Super, Sub> Downcast<Sub> for Super
where Super: IsA<Super>, Sub: IsA<Super>,

Source§

fn can_downcast(&self) -> bool

Checks if it’s possible to downcast to T. Read more
Source§

fn downcast(self) -> Result<Sub, Super>

Tries to downcast to T. Read more
Source§

fn downcast_ref(&self) -> Option<&Sub>

Tries to downcast to &T. Read more
Source§

unsafe fn downcast_unchecked(self) -> Sub

Downcasts to T unconditionally. Read more
Source§

unsafe fn downcast_ref_unchecked(&self) -> &Sub

Downcasts to &T unconditionally. Read more
Source§

impl<T> ElementBase for T

Source§

fn parent_change_state(&self, transition: StateChange) -> StateChangeReturn

Source§

fn parent_send_event(&self, event: Event) -> bool

Source§

fn parent_query(&self, query: &mut QueryRef) -> bool

Source§

fn parent_set_context(&self, context: &Context)

Source§

fn catch_panic<T, F: FnOnce(&Self) -> T, G: FnOnce() -> T>( &self, fallback: G, f: F, ) -> T

Source§

impl<O> ElementExt for O
where O: IsA<Element> + IsA<Object>,

Source§

fn abort_state(&self)

Source§

fn add_pad<P>(&self, pad: &P) -> Result<(), BoolError>
where P: IsA<Pad>,

Source§

fn change_state(&self, transition: StateChange) -> StateChangeReturn

Source§

fn continue_state(&self, ret: StateChangeReturn) -> StateChangeReturn

Source§

fn create_all_pads(&self)

Source§

fn get_base_time(&self) -> ClockTime

Source§

fn get_bus(&self) -> Option<Bus>

Source§

fn get_clock(&self) -> Option<Clock>

Source§

fn get_compatible_pad<'a, P, Q>(&self, pad: &P, caps: Q) -> Option<Pad>
where P: IsA<Pad>, Q: Into<Option<&'a GstRc<CapsRef>>>,

Source§

fn get_compatible_pad_template( &self, compattempl: &PadTemplate, ) -> Option<PadTemplate>

Source§

fn get_context(&self, context_type: &str) -> Option<GstRc<ContextRef>>

Source§

fn get_contexts(&self) -> Vec<GstRc<ContextRef>>

Source§

fn get_factory(&self) -> Option<ElementFactory>

Source§

fn get_request_pad(&self, name: &str) -> Option<Pad>

Source§

fn get_start_time(&self) -> ClockTime

Source§

fn get_state(&self, timeout: ClockTime) -> (StateChangeReturn, State, State)

Source§

fn get_static_pad(&self, name: &str) -> Option<Pad>

Source§

fn is_locked_state(&self) -> bool

Source§

fn lost_state(&self)

Source§

fn no_more_pads(&self)

Source§

fn post_message(&self, message: &GstRc<MessageRef>) -> Result<(), BoolError>

Source§

fn provide_clock(&self) -> Option<Clock>

Source§

fn release_request_pad<P>(&self, pad: &P)
where P: IsA<Pad>,

Source§

fn remove_pad<P>(&self, pad: &P) -> Result<(), BoolError>
where P: IsA<Pad>,

Source§

fn request_pad<'a, 'b, P, Q>( &self, templ: &PadTemplate, name: P, caps: Q, ) -> Option<Pad>
where P: Into<Option<&'a str>>, Q: Into<Option<&'b GstRc<CapsRef>>>,

Source§

fn set_base_time(&self, time: ClockTime)

Source§

fn set_bus<'a, P>(&self, bus: P)
where P: Into<Option<&'a Bus>>,

Source§

fn set_clock<'a, P, Q>(&self, clock: Q) -> Result<(), BoolError>
where P: IsA<Clock> + 'a, Q: Into<Option<&'a P>>,

Source§

fn set_context(&self, context: &GstRc<ContextRef>)

Source§

fn set_locked_state(&self, locked_state: bool) -> bool

Source§

fn set_start_time(&self, time: ClockTime)

Source§

fn set_state(&self, state: State) -> StateChangeReturn

Source§

fn sync_state_with_parent(&self) -> Result<(), BoolError>

Source§

fn connect_no_more_pads<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O) + Send + Sync + 'static,

Source§

fn connect_pad_added<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O, &Pad) + Send + Sync + 'static,

Source§

fn connect_pad_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O, &Pad) + Send + Sync + 'static,

Source§

impl<O> ElementExtManual for O
where O: IsA<Element>,

Source§

fn query(&self, query: &mut QueryRef) -> bool

Source§

fn send_event(&self, event: GstRc<EventRef>) -> bool

Source§

fn get_metadata<'a>(&self, key: &str) -> Option<&'a str>

Source§

fn get_pad_template(&self, name: &str) -> Option<PadTemplate>

Source§

fn get_pad_template_list(&self) -> Vec<PadTemplate>

Source§

fn message_full<T>( &self, type_: ElementMessageType, code: T, message: Option<&str>, debug: Option<&str>, file: &str, function: &str, line: u32, )

Source§

fn post_error_message(&self, msg: &ErrorMessage)

Source§

fn iterate_pads(&self) -> Iterator<Pad>

Source§

fn iterate_sink_pads(&self) -> Iterator<Pad>

Source§

fn iterate_src_pads(&self) -> Iterator<Pad>

Source§

fn get_pads(&self) -> Vec<Pad>

Source§

fn get_sink_pads(&self) -> Vec<Pad>

Source§

fn get_src_pads(&self) -> Vec<Pad>

Source§

fn query_convert<V, U>(&self, src_val: V) -> Option<U>

Source§

fn query_convert_generic<V>( &self, src_val: V, dest_format: Format, ) -> Option<GenericFormattedValue>

Source§

fn query_duration<T>(&self) -> Option<T>

Source§

fn query_duration_generic( &self, format: Format, ) -> Option<GenericFormattedValue>

Source§

fn query_position<T>(&self) -> Option<T>

Source§

fn query_position_generic( &self, format: Format, ) -> Option<GenericFormattedValue>

Source§

fn seek<V>( &self, rate: f64, flags: SeekFlags, start_type: SeekType, start: V, stop_type: SeekType, stop: V, ) -> Result<(), BoolError>

Source§

fn seek_simple<V>( &self, seek_flags: SeekFlags, seek_pos: V, ) -> Result<(), BoolError>

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

Source§

impl<O> GObjectExtManualGst for O
where O: IsA<Object>,

Source§

fn set_property_from_str(&self, name: &str, value: &str)

Source§

impl<O> GstObjectExt for O
where O: IsA<Object> + IsA<Object>,

Source§

fn default_error<'a, P>(&self, error: &Error, debug: P)
where P: Into<Option<&'a str>>,

Source§

fn get_control_rate(&self) -> ClockTime

Source§

fn get_name(&self) -> String

Source§

fn get_parent(&self) -> Option<Object>

Source§

fn get_path_string(&self) -> String

Source§

fn has_active_control_bindings(&self) -> bool

Source§

fn has_ancestor<P>(&self, ancestor: &P) -> bool
where P: IsA<Object>,

Source§

fn has_as_ancestor<P>(&self, ancestor: &P) -> bool
where P: IsA<Object>,

Source§

fn has_as_parent<P>(&self, parent: &P) -> bool
where P: IsA<Object>,

Source§

fn set_control_binding_disabled(&self, property_name: &str, disabled: bool)

Source§

fn set_control_bindings_disabled(&self, disabled: bool)

Source§

fn set_control_rate(&self, control_rate: ClockTime)

Source§

fn set_name(&self, name: &str) -> Result<(), BoolError>

Source§

fn set_parent<P>(&self, parent: &P) -> Result<(), BoolError>
where P: IsA<Object>,

Source§

fn suggest_next_sync(&self) -> ClockTime

Source§

fn sync_values(&self, timestamp: ClockTime) -> Result<(), BoolError>

Source§

fn unparent(&self)

Source§

fn connect_property_name_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O) + Send + Sync + 'static,

Source§

fn connect_property_parent_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O) + Send + Sync + 'static,

Source§

impl<O> GstObjectExtManual for O
where O: IsA<Object> + IsA<Object> + SetValue,

Source§

fn connect_deep_notify<'a, P, F>(&self, name: P, f: F) -> SignalHandlerId
where P: Into<Option<&'a str>>, F: Fn(&O, &Object, &ParamSpec) + Send + Sync + 'static,

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ObjectBase for T
where T: IsA<Object> + ObjectType,

Source§

impl<T> ObjectExt for T
where T: IsA<Object> + SetValue,

Source§

fn get_type(&self) -> Type

Source§

fn set_property<'a, N>( &self, property_name: N, value: &dyn ToValue, ) -> Result<(), BoolError>
where N: Into<&'a str>,

Source§

fn get_property<'a, N>(&self, property_name: N) -> Result<Value, BoolError>
where N: Into<&'a str>,

Source§

fn block_signal(&self, handler_id: &SignalHandlerId)

Source§

fn unblock_signal(&self, handler_id: &SignalHandlerId)

Source§

fn stop_signal_emission(&self, signal_name: &str)

Source§

fn disconnect(&self, handler_id: SignalHandlerId)

Source§

fn connect_notify<'a, P, F>(&self, name: P, f: F) -> SignalHandlerId
where P: Into<Option<&'a str>>, F: Fn(&T, &ParamSpec) + Send + Sync + 'static,

Source§

fn notify<'a, N>(&self, property_name: N)
where N: Into<&'a str>,

Source§

fn notify_by_pspec(&self, pspec: &ParamSpec)

Source§

fn has_property<'a, N>( &self, property_name: N, type_: Option<Type>, ) -> Result<(), BoolError>
where N: Into<&'a str>,

Source§

fn get_property_type<'a, N>(&self, property_name: N) -> Option<Type>
where N: Into<&'a str>,

Source§

fn find_property<'a, N>(&self, property_name: N) -> Option<ParamSpec>
where N: Into<&'a str>,

Source§

fn list_properties(&self) -> Vec<ParamSpec>

Source§

fn connect<'a, N, F>( &self, signal_name: N, after: bool, callback: F, ) -> Result<SignalHandlerId, BoolError>
where N: Into<&'a str>, F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,

Source§

fn emit<'a, N>( &self, signal_name: N, args: &[&dyn ToValue], ) -> Result<Option<Value>, BoolError>
where N: Into<&'a str>,

Source§

fn downgrade(&self) -> WeakRef<T>

Source§

fn bind_property<'a, O, N, M>( &'a self, source_property: N, target: &'a O, target_property: M, ) -> BindingBuilder<'a, T, O>
where O: IsA<Object>, N: Into<&'a str>, M: Into<&'a str>,

Source§

fn ref_count(&self) -> u32

Source§

impl<O> PipelineExt for O
where O: IsA<Pipeline> + IsA<Object>,

Source§

fn auto_clock(&self)

Source§

fn get_auto_flush_bus(&self) -> bool

Source§

fn get_delay(&self) -> ClockTime

Source§

fn get_latency(&self) -> ClockTime

Source§

fn get_pipeline_clock(&self) -> Option<Clock>

Source§

fn set_auto_flush_bus(&self, auto_flush: bool)

Source§

fn set_delay(&self, delay: ClockTime)

Source§

fn set_latency(&self, latency: ClockTime)

Source§

fn use_clock<'a, P, Q>(&self, clock: Q)
where P: IsA<Clock> + 'a, Q: Into<Option<&'a P>>,

Source§

fn connect_property_auto_flush_bus_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O) + Send + Sync + 'static,

Source§

fn connect_property_delay_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O) + Send + Sync + 'static,

Source§

fn connect_property_latency_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&O) + Send + Sync + 'static,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToSendValue for T
where T: SetValue + Send + ToValue + ?Sized,

Source§

fn to_send_value(&self) -> SendValue

Returns a SendValue clone of self.
Source§

impl<T> ToValue for T
where T: SetValue + ?Sized,

Source§

fn to_value(&self) -> Value

Returns a Value clone of self.
Source§

fn to_value_type(&self) -> Type

Returns the type identifer of self. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> IsA<T> for T
where T: StaticType + Wrapper + Into<ObjectRef> + UnsafeFrom<ObjectRef> + for<'a> ToGlibPtr<'a, *mut <T as Wrapper>::GlibType>,

Source§

impl<T> PipelineBase for T
where T: IsA<Element> + IsA<Bin> + IsA<Pipeline> + ObjectType,