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