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
#[derive(Clone, Debug, Default)]
pub struct RetrieveSubscriptionParameters {
pub include: Option<String>,
}
impl RetrieveSubscriptionParameters {
pub fn to_query_string(&self) -> String {
self.to_string()
}
}
impl From<RetrieveSubscriptionParameters> for String {
fn from(retrieve_subscription_parameters: RetrieveSubscriptionParameters) -> Self {
retrieve_subscription_parameters.to_string()
}
}
impl ToString for RetrieveSubscriptionParameters {
fn to_string(&self) -> String {
let mut params = Vec::new();
if let Some(include) = &self.include {
params.push(format!("include={}", include));
}
if params.is_empty() {
String::new()
} else {
format!("?{}", params.join("&"))
}
}
}