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
110
111
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct RetainedMessageSummary {
pub topic: std::option::Option<std::string::String>,
pub payload_size: i64,
pub qos: i32,
pub last_modified_time: i64,
}
impl RetainedMessageSummary {
pub fn topic(&self) -> std::option::Option<&str> {
self.topic.as_deref()
}
pub fn payload_size(&self) -> i64 {
self.payload_size
}
pub fn qos(&self) -> i32 {
self.qos
}
pub fn last_modified_time(&self) -> i64 {
self.last_modified_time
}
}
impl std::fmt::Debug for RetainedMessageSummary {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut formatter = f.debug_struct("RetainedMessageSummary");
formatter.field("topic", &self.topic);
formatter.field("payload_size", &self.payload_size);
formatter.field("qos", &self.qos);
formatter.field("last_modified_time", &self.last_modified_time);
formatter.finish()
}
}
pub mod retained_message_summary {
#[non_exhaustive]
#[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct Builder {
pub(crate) topic: std::option::Option<std::string::String>,
pub(crate) payload_size: std::option::Option<i64>,
pub(crate) qos: std::option::Option<i32>,
pub(crate) last_modified_time: std::option::Option<i64>,
}
impl Builder {
pub fn topic(mut self, input: impl Into<std::string::String>) -> Self {
self.topic = Some(input.into());
self
}
pub fn set_topic(mut self, input: std::option::Option<std::string::String>) -> Self {
self.topic = input;
self
}
pub fn payload_size(mut self, input: i64) -> Self {
self.payload_size = Some(input);
self
}
pub fn set_payload_size(mut self, input: std::option::Option<i64>) -> Self {
self.payload_size = input;
self
}
pub fn qos(mut self, input: i32) -> Self {
self.qos = Some(input);
self
}
pub fn set_qos(mut self, input: std::option::Option<i32>) -> Self {
self.qos = input;
self
}
pub fn last_modified_time(mut self, input: i64) -> Self {
self.last_modified_time = Some(input);
self
}
pub fn set_last_modified_time(mut self, input: std::option::Option<i64>) -> Self {
self.last_modified_time = input;
self
}
pub fn build(self) -> crate::model::RetainedMessageSummary {
crate::model::RetainedMessageSummary {
topic: self.topic,
payload_size: self.payload_size.unwrap_or_default(),
qos: self.qos.unwrap_or_default(),
last_modified_time: self.last_modified_time.unwrap_or_default(),
}
}
}
}
impl RetainedMessageSummary {
pub fn builder() -> crate::model::retained_message_summary::Builder {
crate::model::retained_message_summary::Builder::default()
}
}