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
use super::Thumb;
use crate::types::InputMessageContent;
use serde::Serialize;
#[derive(Debug, PartialEq, Clone, Serialize)]
#[must_use]
pub struct Article {
title: String,
input_message_content: InputMessageContent,
#[serde(skip_serializing_if = "Option::is_none")]
url: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
hide_url: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
description: Option<String>,
#[serde(flatten, skip_serializing_if = "Option::is_none")]
thumb: Option<Thumb>,
}
impl Article {
pub fn new(
title: impl Into<String>,
input_message_content: impl Into<InputMessageContent>,
) -> Self {
Self {
title: title.into(),
input_message_content: input_message_content.into(),
url: None,
hide_url: None,
description: None,
thumb: None,
}
}
pub fn url(mut self, url: impl Into<String>) -> Self {
self.url = Some(url.into());
self
}
pub const fn is_url_hidden(mut self, is_hidden: bool) -> Self {
self.hide_url = Some(is_hidden);
self
}
#[allow(clippy::missing_const_for_fn)]
pub fn thumb(mut self, thumb: Thumb) -> Self {
self.thumb = Some(thumb);
self
}
pub fn description(mut self, description: impl Into<String>) -> Self {
self.description = Some(description.into());
self
}
}