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
use io;
use crate::;
/// A successful record registration
///
/// Releases the record when dropped (unless it is a
/// [`Registration::get_default_txt_record`] or a
/// [`Register::get_default_txt_record`])
///
/// Also keeps the underlying [`Registration`] or [`Connection`] alive.
///
/// [`Registration::get_default_txt_record`]: struct.Registration.html#method.get_default_txt_record
/// [`Register::get_default_txt_record`]: struct.Register.html#method.get_default_txt_record
/// [`Registration`]: struct.Registration.html
/// [`Connection`]: struct.Connection.html
;