gstreamer_editing_services/auto/
overlay_clip.rs

1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
4// DO NOT EDIT
5
6use crate::{ffi, Clip, Container, Extractable, MetaContainer, OperationClip, TimelineElement};
7
8glib::wrapper! {
9    /// Overlays are objects which modify the underlying layer(s).
10    ///
11    /// Examples of overlays include text, image watermarks, or audio dubbing.
12    ///
13    /// Transitions, which change from one source to another over time, are
14    /// not considered overlays.
15    ///
16    /// This is an Abstract Base Class, you cannot instantiate it.
17    ///
18    /// # Implements
19    ///
20    /// [`OperationClipExt`][trait@crate::prelude::OperationClipExt], [`ClipExt`][trait@crate::prelude::ClipExt], [`GESContainerExt`][trait@crate::prelude::GESContainerExt], [`TimelineElementExt`][trait@crate::prelude::TimelineElementExt], [`trait@glib::ObjectExt`], [`ExtractableExt`][trait@crate::prelude::ExtractableExt], [`MetaContainerExt`][trait@crate::prelude::MetaContainerExt], [`TimelineElementExtManual`][trait@crate::prelude::TimelineElementExtManual]
21    #[doc(alias = "GESOverlayClip")]
22    pub struct OverlayClip(Object<ffi::GESOverlayClip, ffi::GESOverlayClipClass>) @extends OperationClip, Clip, Container, TimelineElement, @implements Extractable, MetaContainer;
23
24    match fn {
25        type_ => || ffi::ges_overlay_clip_get_type(),
26    }
27}
28
29impl OverlayClip {
30    pub const NONE: Option<&'static OverlayClip> = None;
31}