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
use gio_sys;
use glib::translate::*;
use glib::GString;
glib_wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct SrvTarget(Boxed<gio_sys::GSrvTarget>);
match fn {
copy => |ptr| gio_sys::g_srv_target_copy(mut_override(ptr)),
free => |ptr| gio_sys::g_srv_target_free(ptr),
get_type => || gio_sys::g_srv_target_get_type(),
}
}
impl SrvTarget {
pub fn new(hostname: &str, port: u16, priority: u16, weight: u16) -> SrvTarget {
unsafe {
from_glib_full(gio_sys::g_srv_target_new(
hostname.to_glib_none().0,
port,
priority,
weight,
))
}
}
pub fn get_hostname(&mut self) -> Option<GString> {
unsafe {
from_glib_none(gio_sys::g_srv_target_get_hostname(
self.to_glib_none_mut().0,
))
}
}
pub fn get_port(&mut self) -> u16 {
unsafe { gio_sys::g_srv_target_get_port(self.to_glib_none_mut().0) }
}
pub fn get_priority(&mut self) -> u16 {
unsafe { gio_sys::g_srv_target_get_priority(self.to_glib_none_mut().0) }
}
pub fn get_weight(&mut self) -> u16 {
unsafe { gio_sys::g_srv_target_get_weight(self.to_glib_none_mut().0) }
}
}