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
|
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum TextColor {
Default,
Gray,
Brown,
Orange,
Yellow,
Green,
Blue,
Purple,
Pink,
Red,
GrayBackground,
BrownBackground,
OrangeBackground,
YellowBackground,
GreenBackground,
BlueBackground,
PurpleBackground,
PinkBackground,
RedBackground,
}
/// Rich text annotations
/// See https://developers.notion.com/reference/rich-text#annotations
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq)]
struct Annotations {
bold: bool,
code: bool,
color: TextColor,
italic: bool,
strikethrough: bool,
underline: bool,
}
/// Properties common on all rich text objects
/// See https://developers.notion.com/reference/rich-text#all-rich-text
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq)]
pub struct RichTextCommon {
plain_text: String,
href: Option<String>,
annotations: Annotations,
}
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq)]
pub struct Link {
url: String,
}
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq)]
pub struct Text {
content: String,
link: Option<String>,
}
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq)]
#[serde(tag = "type")]
#[serde(rename_all = "snake_case")]
pub enum RichText {
/// See https://developers.notion.com/reference/rich-text#text-objects
Text {
#[serde(flatten)]
rich_text: RichTextCommon,
text: Text,
},
/// See https://developers.notion.com/reference/rich-text#mention-objects
Mention {
#[serde(flatten)]
rich_text: RichTextCommon,
},
/// See https://developers.notion.com/reference/rich-text#equation-objects
Equation {
#[serde(flatten)]
rich_text: RichTextCommon,
},
}
|