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
crate::ix!();
/**
| Address book data
|
*/
pub struct AddressBookData {
change: bool, // default = { true }
label: String,
purpose: String,
destdata: AddressBookDataStringMap,
}
pub type AddressBookDataStringMap = HashMap<String,String>;
pub trait FindAddressBookEntry {
fn find_address_book_entry(&self,
_0: &TxDestination,
allow_change: Option<bool>) -> *const AddressBookData;
}
impl Default for AddressBookData {
fn default() -> Self {
todo!();
/*
: purpose("unknown"),
*/
}
}
impl AddressBookData {
pub fn is_change(&self) -> bool {
todo!();
/*
return m_change;
*/
}
pub fn get_label(&self) -> &String {
todo!();
/*
return m_label;
*/
}
pub fn set_label(&mut self, label: &String) {
todo!();
/*
m_change = false;
m_label = label;
*/
}
}