gstreamer_editing_services/auto/
operation_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, TimelineElement};
7
8glib::wrapper! {
9    /// Operations are any kind of object that both outputs AND consumes data.
10    ///
11    /// This is an Abstract Base Class, you cannot instantiate it.
12    ///
13    /// # Implements
14    ///
15    /// [`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]
16    #[doc(alias = "GESOperationClip")]
17    pub struct OperationClip(Object<ffi::GESOperationClip, ffi::GESOperationClipClass>) @extends Clip, Container, TimelineElement, @implements Extractable, MetaContainer;
18
19    match fn {
20        type_ => || ffi::ges_operation_clip_get_type(),
21    }
22}
23
24impl OperationClip {
25    pub const NONE: Option<&'static OperationClip> = None;
26}