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
56
57
58
59
60
61
62
63
64
65
use BindingFlags;
use GString;
use Object;
use gobject_ffi as ffi;
use std::fmt;
use translate::*;
glib_wrapper! {
pub struct Binding(Object<ffi::GBinding, BindingClass>);
match fn {
get_type => || ffi::g_binding_get_type(),
}
}
impl Binding {
pub fn get_flags(&self) -> BindingFlags {
unsafe {
from_glib(ffi::g_binding_get_flags(self.to_glib_none().0))
}
}
pub fn get_source(&self) -> Option<Object> {
unsafe {
from_glib_none(ffi::g_binding_get_source(self.to_glib_none().0))
}
}
pub fn get_source_property(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::g_binding_get_source_property(self.to_glib_none().0))
}
}
pub fn get_target(&self) -> Option<Object> {
unsafe {
from_glib_none(ffi::g_binding_get_target(self.to_glib_none().0))
}
}
pub fn get_target_property(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::g_binding_get_target_property(self.to_glib_none().0))
}
}
pub fn unbind(&self) {
unsafe {
ffi::g_binding_unbind(self.to_glib_full());
}
}
}
unsafe impl Send for Binding {}
unsafe impl Sync for Binding {}
impl fmt::Display for Binding {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Binding")
}
}