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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
use super::ParamKind;
use crate::Mime;

/// Content-Type that matches anything.
///
/// # Mime Type
///
/// ```txt
/// */*
/// ```
pub const ANY: Mime = Mime {
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: None,
    static_essence: Some("*/*"),
    static_basetype: Some("*"),
    static_subtype: Some("*"),
};

/// Content-Type for JavaScript.
///
/// # Mime Type
///
/// ```txt
/// application/javascript; charset=utf-8
/// ```
pub const JAVASCRIPT: Mime = Mime {
    static_essence: Some("application/javascript"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: Some(ParamKind::Utf8),
    static_basetype: Some("application"),
    static_subtype: Some("javascript"),
};

/// Content-Type for JSON.
///
/// # Mime Type
///
/// ```txt
/// application/json
/// ```
pub const JSON: Mime = Mime {
    static_essence: Some("application/json"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: None,
    static_basetype: Some("application"),
    static_subtype: Some("json"),
};

/// Content-Type for CSS.
///
/// # Mime Type
///
/// ```txt
/// text/css; charset=utf-8
/// ```
pub const CSS: Mime = Mime {
    static_essence: Some("text/css"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: Some(ParamKind::Utf8),
    static_basetype: Some("text"),
    static_subtype: Some("css"),
};

/// Content-Type for HTML.
///
/// # Mime Type
///
/// ```txt
/// text/html; charset=utf-8
/// ```
pub const HTML: Mime = Mime {
    static_essence: Some("text/html"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: Some(ParamKind::Utf8),
    static_basetype: Some("text"),
    static_subtype: Some("html"),
};

/// Content-Type for SVG.
///
/// # Mime Type
///
/// ```txt
/// image/svg+xml
/// ```
pub const SVG: Mime = Mime {
    static_essence: Some("image/svg+xml"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: None,
    static_basetype: Some("image"),
    static_subtype: Some("svg+xml"),
};

/// Content-Type for ICO icons.
///
/// # Mime Type
///
/// ```txt
/// image/x-icon
/// ```
// There are multiple `.ico` mime types known, but `image/x-icon`
// is what most browser use. See:
// https://en.wikipedia.org/wiki/ICO_%28file_format%29#MIME_type
pub const ICO: Mime = Mime {
    static_essence: Some("image/x-icon"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: None,
    static_basetype: Some("image"),
    static_subtype: Some("x-icon"),
};

/// Content-Type for PNG images.
///
/// # Mime Type
///
/// ```txt
/// image/png
/// ```
pub const PNG: Mime = Mime {
    static_essence: Some("image/png"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: None,
    static_basetype: Some("image"),
    static_subtype: Some("png"),
};

/// Content-Type for JPEG images.
///
/// # Mime Type
///
/// ```txt
/// image/jpeg
/// ```
pub const JPEG: Mime = Mime {
    static_essence: Some("image/jpeg"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: None,
    static_basetype: Some("image"),
    static_subtype: Some("jpeg"),
};

/// Content-Type for Server Sent Events
///
/// # Mime Type
///
/// ```txt
/// text/event-stream
/// ```
pub const SSE: Mime = Mime {
    static_essence: Some("text/event-stream"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    static_basetype: Some("text"),
    static_subtype: Some("event-stream"),
    params: None,
};

/// Content-Type for plain text.
///
/// # Mime Type
///
/// ```txt
/// text/plain; charset=utf-8
/// ```
pub const PLAIN: Mime = Mime {
    static_essence: Some("text/plain"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    params: Some(ParamKind::Utf8),
    static_basetype: Some("text"),
    static_subtype: Some("plain"),
};

/// Content-Type for byte streams.
///
/// # Mime Type
///
/// ```txt
/// application/octet-stream
/// ```
pub const BYTE_STREAM: Mime = Mime {
    static_essence: Some("application/octet-stream"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    static_basetype: Some("application"),
    static_subtype: Some("octet-stream"),
    params: None,
};

/// Content-Type for form.
///
/// # Mime Type
///
/// ```txt
/// application/x-www-form-urlencoded
/// ```
pub const FORM: Mime = Mime {
    static_essence: Some("application/x-www-form-urlencoded"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    static_basetype: Some("application"),
    static_subtype: Some("x-www-form-urlencoded"),
    params: None,
};

/// Content-Type for a multipart form.
///
/// # Mime Type
///
/// ```txt
/// multipart/form-data
/// ```
pub const MULTIPART_FORM: Mime = Mime {
    static_essence: Some("multipart/form-data"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    static_basetype: Some("multipart"),
    static_subtype: Some("form-data"),
    params: None,
};

/// Content-Type for webassembly.
///
/// # Mime Type
///
/// ```txt
/// application/wasm
/// ```
pub const WASM: Mime = Mime {
    static_essence: Some("application/wasm"),
    essence: String::new(),
    basetype: String::new(),
    subtype: String::new(),
    static_basetype: Some("application"),
    static_subtype: Some("wasm"),
    params: None,
};