Struct gstreamer::ChildProxy[]

pub struct ChildProxy(_, _);

This interface abstracts handling of property sets for elements with children. Imagine elements such as mixers or polyphonic generators. They all have multiple Pad or some kind of voice objects. Another use case are container elements like Bin. The element implementing the interface acts as a parent for those child objects.

By implementing this interface the child properties can be accessed from the parent element by using ChildProxy::get and ChildProxy::set.

Property names are written as "child-name::property-name". The whole naming scheme is recursive. Thus "child1::child2::property" is valid too, if "child1" and "child2" implement the ChildProxy interface.

Implements

ChildProxyExt

Trait Implementations

impl IsA<ChildProxy> for Bin

impl Clone for ChildProxy

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Hash for ChildProxy

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Ord for ChildProxy

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl StaticType for ChildProxy

Returns the type identifier of Self.

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ChildProxy

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

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

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Debug for ChildProxy

Formats the value using the given formatter. Read more

impl IsA<Object> for ChildProxy

impl Send for ChildProxy
[src]

impl Sync for ChildProxy
[src]

impl IsA<ChildProxy> for Pipeline