1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use Element;
use Object;
use Toc;
use ffi;
use glib::object::IsA;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;
glib_wrapper! {
pub struct TocSetter(Object<ffi::GstTocSetter, ffi::GstTocSetterInterface>): Element, Object;
match fn {
get_type => || ffi::gst_toc_setter_get_type(),
}
}
unsafe impl Send for TocSetter {}
unsafe impl Sync for TocSetter {}
pub trait TocSetterExt {
fn get_toc(&self) -> Option<Toc>;
fn reset(&self);
fn set_toc<'a, P: Into<Option<&'a Toc>>>(&self, toc: P);
}
impl<O: IsA<TocSetter>> TocSetterExt for O {
fn get_toc(&self) -> Option<Toc> {
unsafe {
from_glib_full(ffi::gst_toc_setter_get_toc(self.to_glib_none().0))
}
}
fn reset(&self) {
unsafe {
ffi::gst_toc_setter_reset(self.to_glib_none().0);
}
}
fn set_toc<'a, P: Into<Option<&'a Toc>>>(&self, toc: P) {
let toc = toc.into();
let toc = toc.to_glib_none();
unsafe {
ffi::gst_toc_setter_set_toc(self.to_glib_none().0, toc.0);
}
}
}