pub trait EffectExt: IsA<Effect> + Sealed + 'static {
    // Provided method
    fn bin_description(&self) -> Option<GString> { ... }
}
Expand description

Trait containing all Effect methods.

§Implementors

Effect

Provided Methods§

source

fn bin_description(&self) -> Option<GString>

The description of the effect bin with a gst-launch-style pipeline description.

Example: “videobalance saturation=1.5 hue=+0.5”

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<Effect>> EffectExt for O