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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
use FormatOptions;
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 InternetAddress(Object<ffi::InternetAddress, ffi::InternetAddressClass>);
match fn {
get_type => || ffi::internet_address_get_type(),
}
}
pub trait InternetAddressExt {
fn get_charset(&self) -> Option<String>;
fn get_name(&self) -> Option<String>;
fn set_charset<'a, P: Into<Option<&'a str>>>(&self, charset: P);
fn set_name(&self, name: &str);
fn to_string<'a, P: Into<Option<&'a FormatOptions>>>(&self, options: P, encode: bool) -> String;
}
impl<O: IsA<InternetAddress>> InternetAddressExt for O {
fn get_charset(&self) -> Option<String> {
unsafe {
from_glib_none(ffi::internet_address_get_charset(self.to_glib_none().0))
}
}
fn get_name(&self) -> Option<String> {
unsafe {
from_glib_none(ffi::internet_address_get_name(self.to_glib_none().0))
}
}
fn set_charset<'a, P: Into<Option<&'a str>>>(&self, charset: P) {
let charset = charset.into();
let charset = charset.to_glib_none();
unsafe {
ffi::internet_address_set_charset(self.to_glib_none().0, charset.0);
}
}
fn set_name(&self, name: &str) {
unsafe {
ffi::internet_address_set_name(self.to_glib_none().0, name.to_glib_none().0);
}
}
fn to_string<'a, P: Into<Option<&'a FormatOptions>>>(&self, options: P, encode: bool) -> String {
let options = options.into();
unsafe {
from_glib_full(ffi::internet_address_to_string(self.to_glib_none().0, mut_override(options.to_glib_none().0), encode.to_glib()))
}
}
}