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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
//! Text MIME types
//!
//! This module contains MIME types for text data.
/// `text/1d-interleaved-parityfec`
pub const _1D_INTERLEAVED_PARITYFEC: &str = "text/1d-interleaved-parityfec";
/// `text/cache-manifest`
///
/// Common file extensions: `.appcache`, `.manifest`
pub const CACHE_MANIFEST: &str = "text/cache-manifest";
/// `text/calendar`
///
/// Common file extensions: `.ics`, `.ifb`
pub const CALENDAR: &str = "text/calendar";
/// `text/cmd`
pub const CMD: &str = "text/cmd";
/// `text/coffeescript`
///
/// Common file extensions: `.coffee`, `.litcoffee`
pub const COFFEESCRIPT: &str = "text/coffeescript";
/// `text/cql`
pub const CQL: &str = "text/cql";
/// `text/cql-expression`
pub const CQL_EXPRESSION: &str = "text/cql-expression";
/// `text/cql-identifier`
pub const CQL_IDENTIFIER: &str = "text/cql-identifier";
/// `text/css`
///
/// Common file extensions: `.css`
pub const CSS: &str = "text/css";
/// `text/csv`
///
/// Common file extensions: `.csv`
pub const CSV: &str = "text/csv";
/// `text/csv-schema`
pub const CSV_SCHEMA: &str = "text/csv-schema";
/// `text/directory`
pub const DIRECTORY: &str = "text/directory";
/// `text/dns`
pub const DNS: &str = "text/dns";
/// `text/ecmascript`
pub const ECMASCRIPT: &str = "text/ecmascript";
/// `text/encaprtp`
pub const ENCAPRTP: &str = "text/encaprtp";
/// `text/enriched`
pub const ENRICHED: &str = "text/enriched";
/// `text/fhirpath`
pub const FHIRPATH: &str = "text/fhirpath";
/// `text/flexfec`
pub const FLEXFEC: &str = "text/flexfec";
/// `text/fwdred`
pub const FWDRED: &str = "text/fwdred";
/// `text/gff3`
pub const GFF3: &str = "text/gff3";
/// `text/grammar-ref-list`
pub const GRAMMAR_REF_LIST: &str = "text/grammar-ref-list";
/// `text/hl7v2`
pub const HL7V2: &str = "text/hl7v2";
/// `text/html`
///
/// Common file extensions: `.html`, `.htm`, `.shtml`
pub const HTML: &str = "text/html";
/// `text/jade`
///
/// Common file extensions: `.jade`
pub const JADE: &str = "text/jade";
/// `text/javascript`
///
/// Common file extensions: `.js`, `.mjs`
pub const JAVASCRIPT: &str = "text/javascript";
/// `text/jcr-cnd`
pub const JCR_CND: &str = "text/jcr-cnd";
/// `text/jsx`
///
/// Common file extensions: `.jsx`
pub const JSX: &str = "text/jsx";
/// `text/less`
///
/// Common file extensions: `.less`
pub const LESS: &str = "text/less";
/// `text/markdown`
///
/// Common file extensions: `.md`, `.markdown`
pub const MARKDOWN: &str = "text/markdown";
/// `text/mathml`
///
/// Common file extensions: `.mml`
pub const MATHML: &str = "text/mathml";
/// `text/mdx`
///
/// Common file extensions: `.mdx`
pub const MDX: &str = "text/mdx";
/// `text/mizar`
pub const MIZAR: &str = "text/mizar";
/// `text/n3`
///
/// Common file extensions: `.n3`
pub const N3: &str = "text/n3";
/// `text/org`
pub const ORG: &str = "text/org";
/// `text/parameters`
pub const PARAMETERS: &str = "text/parameters";
/// `text/parityfec`
pub const PARITYFEC: &str = "text/parityfec";
/// `text/plain`
///
/// Common file extensions: `.txt`, `.text`, `.conf`, `.def`, `.list`
pub const PLAIN: &str = "text/plain";
/// `text/provenance-notation`
pub const PROVENANCE_NOTATION: &str = "text/provenance-notation";
/// `text/prs.fallenstein.rst`
pub const PRS_FALLENSTEIN_RST: &str = "text/prs.fallenstein.rst";
/// `text/prs.lines.tag`
///
/// Common file extensions: `.dsc`
pub const PRS_LINES_TAG: &str = "text/prs.lines.tag";
/// `text/prs.prop.logic`
pub const PRS_PROP_LOGIC: &str = "text/prs.prop.logic";
/// `text/prs.texi`
pub const PRS_TEXI: &str = "text/prs.texi";
/// `text/raptorfec`
pub const RAPTORFEC: &str = "text/raptorfec";
/// `text/red`
pub const RED: &str = "text/red";
/// `text/rfc822-headers`
pub const RFC822_HEADERS: &str = "text/rfc822-headers";
/// `text/richtext`
///
/// Common file extensions: `.rtx`
pub const RICHTEXT: &str = "text/richtext";
/// `text/rtf`
///
/// Common file extensions: `.rtf`
pub const RTF: &str = "text/rtf";
/// `text/rtp-enc-aescm128`
pub const RTP_ENC_AESCM128: &str = "text/rtp-enc-aescm128";
/// `text/rtploopback`
pub const RTPLOOPBACK: &str = "text/rtploopback";
/// `text/rtx`
pub const RTX: &str = "text/rtx";
/// `text/sgml`
///
/// Common file extensions: `.sgml`, `.sgm`
pub const SGML: &str = "text/sgml";
/// `text/shaclc`
pub const SHACLC: &str = "text/shaclc";
/// `text/shex`
///
/// Common file extensions: `.shex`
pub const SHEX: &str = "text/shex";
/// `text/slim`
///
/// Common file extensions: `.slim`, `.slm`
pub const SLIM: &str = "text/slim";
/// `text/spdx`
///
/// Common file extensions: `.spdx`
pub const SPDX: &str = "text/spdx";
/// `text/strings`
pub const STRINGS: &str = "text/strings";
/// `text/stylus`
///
/// Common file extensions: `.stylus`, `.styl`
pub const STYLUS: &str = "text/stylus";
/// `text/t140`
pub const T140: &str = "text/t140";
/// `text/tab-separated-values`
///
/// Common file extensions: `.tsv`
pub const TAB_SEPARATED_VALUES: &str = "text/tab-separated-values";
/// `text/troff`
///
/// Common file extensions: `.t`, `.tr`, `.roff`, `.man`, `.me`
pub const TROFF: &str = "text/troff";
/// `text/turtle`
///
/// Common file extensions: `.ttl`
pub const TURTLE: &str = "text/turtle";
/// `text/ulpfec`
pub const ULPFEC: &str = "text/ulpfec";
/// `text/uri-list`
///
/// Common file extensions: `.uri`, `.uris`, `.urls`
pub const URI_LIST: &str = "text/uri-list";
/// `text/vcard`
///
/// Common file extensions: `.vcard`
pub const VCARD: &str = "text/vcard";
/// `text/vnd.a`
pub const VND_A: &str = "text/vnd.a";
/// `text/vnd.abc`
pub const VND_ABC: &str = "text/vnd.abc";
/// `text/vnd.ascii-art`
pub const VND_ASCII_ART: &str = "text/vnd.ascii-art";
/// `text/vnd.curl`
///
/// Common file extensions: `.curl`
pub const VND_CURL: &str = "text/vnd.curl";
/// `text/vnd.curl.dcurl`
///
/// Common file extensions: `.dcurl`
pub const VND_CURL_DCURL: &str = "text/vnd.curl.dcurl";
/// `text/vnd.curl.mcurl`
///
/// Common file extensions: `.mcurl`
pub const VND_CURL_MCURL: &str = "text/vnd.curl.mcurl";
/// `text/vnd.curl.scurl`
///
/// Common file extensions: `.scurl`
pub const VND_CURL_SCURL: &str = "text/vnd.curl.scurl";
/// `text/vnd.debian.copyright`
pub const VND_DEBIAN_COPYRIGHT: &str = "text/vnd.debian.copyright";
/// `text/vnd.dmclientscript`
pub const VND_DMCLIENTSCRIPT: &str = "text/vnd.dmclientscript";
/// `text/vnd.dvb.subtitle`
///
/// Common file extensions: `.sub`
pub const VND_DVB_SUBTITLE: &str = "text/vnd.dvb.subtitle";
/// `text/vnd.esmertec.theme-descriptor`
pub const VND_ESMERTEC_THEME_DESCRIPTOR: &str = "text/vnd.esmertec.theme-descriptor";
/// `text/vnd.exchangeable`
pub const VND_EXCHANGEABLE: &str = "text/vnd.exchangeable";
/// `text/vnd.familysearch.gedcom`
///
/// Common file extensions: `.ged`
pub const VND_FAMILYSEARCH_GEDCOM: &str = "text/vnd.familysearch.gedcom";
/// `text/vnd.ficlab.flt`
pub const VND_FICLAB_FLT: &str = "text/vnd.ficlab.flt";
/// `text/vnd.fly`
///
/// Common file extensions: `.fly`
pub const VND_FLY: &str = "text/vnd.fly";
/// `text/vnd.fmi.flexstor`
///
/// Common file extensions: `.flx`
pub const VND_FMI_FLEXSTOR: &str = "text/vnd.fmi.flexstor";
/// `text/vnd.gml`
pub const VND_GML: &str = "text/vnd.gml";
/// `text/vnd.graphviz`
///
/// Common file extensions: `.gv`
pub const VND_GRAPHVIZ: &str = "text/vnd.graphviz";
/// `text/vnd.hans`
pub const VND_HANS: &str = "text/vnd.hans";
/// `text/vnd.hgl`
pub const VND_HGL: &str = "text/vnd.hgl";
/// `text/vnd.in3d.3dml`
///
/// Common file extensions: `.3dml`
pub const VND_IN3D_3DML: &str = "text/vnd.in3d.3dml";
/// `text/vnd.in3d.spot`
///
/// Common file extensions: `.spot`
pub const VND_IN3D_SPOT: &str = "text/vnd.in3d.spot";
/// `text/vnd.iptc.newsml`
pub const VND_IPTC_NEWSML: &str = "text/vnd.iptc.newsml";
/// `text/vnd.iptc.nitf`
pub const VND_IPTC_NITF: &str = "text/vnd.iptc.nitf";
/// `text/vnd.latex-z`
pub const VND_LATEX_Z: &str = "text/vnd.latex-z";
/// `text/vnd.motorola.reflex`
pub const VND_MOTOROLA_REFLEX: &str = "text/vnd.motorola.reflex";
/// `text/vnd.ms-mediapackage`
pub const VND_MS_MEDIAPACKAGE: &str = "text/vnd.ms-mediapackage";
/// `text/vnd.net2phone.commcenter.command`
pub const VND_NET2PHONE_COMMCENTER_COMMAND: &str = "text/vnd.net2phone.commcenter.command";
/// `text/vnd.radisys.msml-basic-layout`
pub const VND_RADISYS_MSML_BASIC_LAYOUT: &str = "text/vnd.radisys.msml-basic-layout";
/// `text/vnd.senx.warpscript`
pub const VND_SENX_WARPSCRIPT: &str = "text/vnd.senx.warpscript";
/// `text/vnd.si.uricatalogue`
pub const VND_SI_URICATALOGUE: &str = "text/vnd.si.uricatalogue";
/// `text/vnd.sosi`
pub const VND_SOSI: &str = "text/vnd.sosi";
/// `text/vnd.sun.j2me.app-descriptor`
///
/// Common file extensions: `.jad`
pub const VND_SUN_J2ME_APP_DESCRIPTOR: &str = "text/vnd.sun.j2me.app-descriptor";
/// `text/vnd.trolltech.linguist`
pub const VND_TROLLTECH_LINGUIST: &str = "text/vnd.trolltech.linguist";
/// `text/vnd.typst`
pub const VND_TYPST: &str = "text/vnd.typst";
/// `text/vnd.vcf`
pub const VND_VCF: &str = "text/vnd.vcf";
/// `text/vnd.wap.si`
pub const VND_WAP_SI: &str = "text/vnd.wap.si";
/// `text/vnd.wap.sl`
pub const VND_WAP_SL: &str = "text/vnd.wap.sl";
/// `text/vnd.wap.wml`
///
/// Common file extensions: `.wml`
pub const VND_WAP_WML: &str = "text/vnd.wap.wml";
/// `text/vnd.wap.wmlscript`
///
/// Common file extensions: `.wmls`
pub const VND_WAP_WMLSCRIPT: &str = "text/vnd.wap.wmlscript";
/// `text/vnd.zoo.kcl`
pub const VND_ZOO_KCL: &str = "text/vnd.zoo.kcl";
/// `text/vtt`
///
/// Common file extensions: `.vtt`
pub const VTT: &str = "text/vtt";
/// `text/wgsl`
///
/// Common file extensions: `.wgsl`
pub const WGSL: &str = "text/wgsl";
/// `text/x-asm`
///
/// Common file extensions: `.s`, `.asm`
pub const X_ASM: &str = "text/x-asm";
/// `text/x-c`
///
/// Common file extensions: `.c`, `.cc`, `.cxx`, `.cpp`, `.h`
pub const X_C: &str = "text/x-c";
/// `text/x-component`
///
/// Common file extensions: `.htc`
pub const X_COMPONENT: &str = "text/x-component";
/// `text/x-fortran`
///
/// Common file extensions: `.f`, `.for`, `.f77`, `.f90`
pub const X_FORTRAN: &str = "text/x-fortran";
/// `text/x-gwt-rpc`
pub const X_GWT_RPC: &str = "text/x-gwt-rpc";
/// `text/x-handlebars-template`
///
/// Common file extensions: `.hbs`
pub const X_HANDLEBARS_TEMPLATE: &str = "text/x-handlebars-template";
/// `text/x-java-source`
///
/// Common file extensions: `.java`
pub const X_JAVA_SOURCE: &str = "text/x-java-source";
/// `text/x-jquery-tmpl`
pub const X_JQUERY_TMPL: &str = "text/x-jquery-tmpl";
/// `text/x-lua`
///
/// Common file extensions: `.lua`
pub const X_LUA: &str = "text/x-lua";
/// `text/x-markdown`
///
/// Common file extensions: `.mkd`
pub const X_MARKDOWN: &str = "text/x-markdown";
/// `text/x-nfo`
///
/// Common file extensions: `.nfo`
pub const X_NFO: &str = "text/x-nfo";
/// `text/x-opml`
///
/// Common file extensions: `.opml`
pub const X_OPML: &str = "text/x-opml";
/// `text/x-org`
///
/// Common file extensions: `.org`
pub const X_ORG: &str = "text/x-org";
/// `text/x-pascal`
///
/// Common file extensions: `.p`, `.pas`
pub const X_PASCAL: &str = "text/x-pascal";
/// `text/x-php`
///
/// Common file extensions: `.php`
pub const X_PHP: &str = "text/x-php";
/// `text/x-processing`
///
/// Common file extensions: `.pde`
pub const X_PROCESSING: &str = "text/x-processing";
/// `text/x-sass`
///
/// Common file extensions: `.sass`
pub const X_SASS: &str = "text/x-sass";
/// `text/x-scss`
///
/// Common file extensions: `.scss`
pub const X_SCSS: &str = "text/x-scss";
/// `text/x-setext`
///
/// Common file extensions: `.etx`
pub const X_SETEXT: &str = "text/x-setext";
/// `text/x-sfv`
///
/// Common file extensions: `.sfv`
pub const X_SFV: &str = "text/x-sfv";
/// `text/x-suse-ymp`
///
/// Common file extensions: `.ymp`
pub const X_SUSE_YMP: &str = "text/x-suse-ymp";
/// `text/x-uuencode`
///
/// Common file extensions: `.uu`
pub const X_UUENCODE: &str = "text/x-uuencode";
/// `text/x-vcalendar`
///
/// Common file extensions: `.vcs`
pub const X_VCALENDAR: &str = "text/x-vcalendar";
/// `text/x-vcard`
///
/// Common file extensions: `.vcf`
pub const X_VCARD: &str = "text/x-vcard";
/// `text/xml`
///
/// Common file extensions: `.xml`
pub const XML: &str = "text/xml";
/// `text/xml-external-parsed-entity`
pub const XML_EXTERNAL_PARSED_ENTITY: &str = "text/xml-external-parsed-entity";
/// `text/yaml`
///
/// Common file extensions: `.yaml`, `.yml`
pub const YAML: &str = "text/yaml";