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
use Attribute;
use AttrList;
use ffi;
use glib::translate::*;
use std::mem;
impl AttrList {
pub fn change(&self, attr: Attribute) {
unsafe {
ffi::pango_attr_list_change(self.to_glib_none().0, attr.to_glib_none().0 as *mut _);
mem::forget(attr);
}
}
pub fn insert(&self, attr: Attribute) {
unsafe {
ffi::pango_attr_list_insert(self.to_glib_none().0, attr.to_glib_none().0 as *mut _);
mem::forget(attr);
}
}
pub fn insert_before(&self, attr: Attribute) {
unsafe {
ffi::pango_attr_list_insert_before(self.to_glib_none().0, attr.to_glib_none().0 as *mut _);
mem::forget(attr);
}
}
}