gstreamer::prelude

Trait ChildProxyExtManual

Source
pub trait ChildProxyExtManual:
    Sealed
    + IsA<ChildProxy>
    + 'static {
    // Provided methods
    fn lookup(&self, name: &str) -> Result<(Object, ParamSpec), BoolError> { ... }
    fn child_property<V: for<'b> FromValue<'b> + 'static>(
        &self,
        name: &str,
    ) -> V { ... }
    fn child_property_value(&self, name: &str) -> Value { ... }
    fn set_child_property(&self, name: &str, value: impl Into<Value>) { ... }
    fn set_child_property_from_value(&self, name: &str, value: &Value) { ... }
}

Provided Methods§

Source

fn lookup(&self, name: &str) -> Result<(Object, ParamSpec), BoolError>

Source

fn child_property<V: for<'b> FromValue<'b> + 'static>(&self, name: &str) -> V

Source

fn child_property_value(&self, name: &str) -> Value

Source

fn set_child_property(&self, name: &str, value: impl Into<Value>)

Source

fn set_child_property_from_value(&self, name: &str, value: &Value)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§