gstreamer-rs/gstreamer-editing-services/src/auto/extractable.rs
Marijn Suijten 7fcd560d18 Update gir and regenerate
- Doc aliases for types;
- ffi constants for bitflags too;
- Completely overhauled docs generation under the hood (only emitting
  valid links, more types receive documentation now).
2021-06-02 09:47:51 +02:00

59 lines
1.7 KiB
Rust

// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT
use crate::Asset;
use glib::object::IsA;
use glib::translate::*;
glib::wrapper! {
#[doc(alias = "GESExtractable")]
pub struct Extractable(Interface<ffi::GESExtractable, ffi::GESExtractableInterface>);
match fn {
type_ => || ffi::ges_extractable_get_type(),
}
}
pub const NONE_EXTRACTABLE: Option<&Extractable> = None;
pub trait ExtractableExt: 'static {
#[doc(alias = "ges_extractable_get_asset")]
#[doc(alias = "get_asset")]
fn asset(&self) -> Option<Asset>;
#[doc(alias = "ges_extractable_get_id")]
#[doc(alias = "get_id")]
fn id(&self) -> Option<glib::GString>;
#[doc(alias = "ges_extractable_set_asset")]
fn set_asset<P: IsA<Asset>>(&self, asset: &P) -> Result<(), glib::error::BoolError>;
}
impl<O: IsA<Extractable>> ExtractableExt for O {
fn asset(&self) -> Option<Asset> {
unsafe {
from_glib_none(ffi::ges_extractable_get_asset(
self.as_ref().to_glib_none().0,
))
}
}
fn id(&self) -> Option<glib::GString> {
unsafe { from_glib_full(ffi::ges_extractable_get_id(self.as_ref().to_glib_none().0)) }
}
fn set_asset<P: IsA<Asset>>(&self, asset: &P) -> Result<(), glib::error::BoolError> {
unsafe {
glib::result_from_gboolean!(
ffi::ges_extractable_set_asset(
self.as_ref().to_glib_none().0,
asset.as_ref().to_glib_none().0
),
"Failed to set asset"
)
}
}
}