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
use ffi;
use glib;
use glib::GString;
use glib::translate::*;
glib_wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct SettingsSchemaKey(Shared<ffi::GSettingsSchemaKey>);
match fn {
ref => |ptr| ffi::g_settings_schema_key_ref(ptr),
unref => |ptr| ffi::g_settings_schema_key_unref(ptr),
get_type => || ffi::g_settings_schema_key_get_type(),
}
}
impl SettingsSchemaKey {
pub fn get_default_value(&self) -> Option<glib::Variant> {
unsafe {
from_glib_full(ffi::g_settings_schema_key_get_default_value(self.to_glib_none().0))
}
}
pub fn get_description(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::g_settings_schema_key_get_description(self.to_glib_none().0))
}
}
#[cfg(any(feature = "v2_44", feature = "dox"))]
pub fn get_name(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::g_settings_schema_key_get_name(self.to_glib_none().0))
}
}
pub fn get_range(&self) -> Option<glib::Variant> {
unsafe {
from_glib_full(ffi::g_settings_schema_key_get_range(self.to_glib_none().0))
}
}
pub fn get_summary(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::g_settings_schema_key_get_summary(self.to_glib_none().0))
}
}
pub fn get_value_type(&self) -> Option<glib::VariantType> {
unsafe {
from_glib_none(ffi::g_settings_schema_key_get_value_type(self.to_glib_none().0))
}
}
pub fn range_check(&self, value: &glib::Variant) -> bool {
unsafe {
from_glib(ffi::g_settings_schema_key_range_check(self.to_glib_none().0, value.to_glib_none().0))
}
}
}