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
use glib::translate::*;
glib::wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct ContentFormatsBuilder(Shared<ffi::GdkContentFormatsBuilder>);
match fn {
ref => |ptr| ffi::gdk_content_formats_builder_ref(ptr),
unref => |ptr| ffi::gdk_content_formats_builder_unref(ptr),
type_ => || ffi::gdk_content_formats_builder_get_type(),
}
}
impl ContentFormatsBuilder {
#[doc(alias = "gdk_content_formats_builder_new")]
pub fn new() -> ContentFormatsBuilder {
assert_initialized_main_thread!();
unsafe { from_glib_full(ffi::gdk_content_formats_builder_new()) }
}
}
impl Default for ContentFormatsBuilder {
fn default() -> Self {
Self::new()
}
}