valerie 0.1.2

Rust font-end framework for building web apps.
Documentation
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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
/// Trait for HTML Elements
pub trait HtmlElement {
    /// The tag of the Element
    fn tag() -> &'static str;
}

// Main root

/// HTML `<html>` element
pub struct Html;

impl HtmlElement for Html {
    fn tag() -> &'static str {
        "html"
    }
}

// Document metadata

/// HTML `<base>` element
pub struct Base;

impl HtmlElement for Base {
    fn tag() -> &'static str {
        "base"
    }
}

/// HTML `<head>` element
pub struct Head;

impl HtmlElement for Head {
    fn tag() -> &'static str {
        "head"
    }
}

/// HTML `<link>` element
pub struct Link;

impl HtmlElement for Link {
    fn tag() -> &'static str {
        "link"
    }
}

/// HTML `<meta>` element
pub struct Meta;

impl HtmlElement for Meta {
    fn tag() -> &'static str {
        "meta"
    }
}

/// HTML `<style>` element
pub struct Style;

impl HtmlElement for Style {
    fn tag() -> &'static str {
        "style"
    }
}

/// HTML `<title>` element
pub struct Title;

impl HtmlElement for Title {
    fn tag() -> &'static str {
        "title"
    }
}

// Sectioning root

/// HTML `<body>` element
pub struct Body;

impl HtmlElement for Body {
    fn tag() -> &'static str {
        "body"
    }
}

// Content sectioning

/// HTML `<address>` element
pub struct Address;

impl HtmlElement for Address {
    fn tag() -> &'static str {
        "address"
    }
}

/// HTML `<article>` element
pub struct Article;

impl HtmlElement for Article {
    fn tag() -> &'static str {
        "article"
    }
}

/// HTML `<aside>` element
pub struct Aside;

impl HtmlElement for Aside {
    fn tag() -> &'static str {
        "aside"
    }
}

/// HTML `<footer>` element
pub struct Footer;

impl HtmlElement for Footer {
    fn tag() -> &'static str {
        "footer"
    }
}

/// HTML `<header>` element
pub struct Header;

impl HtmlElement for Header {
    fn tag() -> &'static str {
        "header"
    }
}

/// HTML `<h1>` element
pub struct H1;

impl HtmlElement for H1 {
    fn tag() -> &'static str {
        "h1"
    }
}

/// HTML `<h2>` element
pub struct H2;

impl HtmlElement for H2 {
    fn tag() -> &'static str {
        "h2"
    }
}

/// HTML `<h3>` element
pub struct H3;

impl HtmlElement for H3 {
    fn tag() -> &'static str {
        "h3"
    }
}

/// HTML `<h4>` element
pub struct H4;

impl HtmlElement for H4 {
    fn tag() -> &'static str {
        "h4"
    }
}

/// HTML `<h5>` element
pub struct H5;

impl HtmlElement for H5 {
    fn tag() -> &'static str {
        "h5"
    }
}

/// HTML `<h6>` element
pub struct H6;

impl HtmlElement for H6 {
    fn tag() -> &'static str {
        "h6"
    }
}

/// HTML `<hgroup>` element
pub struct Hgroup;

impl HtmlElement for Hgroup {
    fn tag() -> &'static str {
        "hgroup"
    }
}

/// HTML `<main>` element
pub struct Main;

impl HtmlElement for Main {
    fn tag() -> &'static str {
        "main"
    }
}

/// HTML `<nav>` element
pub struct Nav;

impl HtmlElement for Nav {
    fn tag() -> &'static str {
        "nav"
    }
}

/// HTML `<section>` element
pub struct Section;

impl HtmlElement for Section {
    fn tag() -> &'static str {
        "section"
    }
}

// Text content

/// HTML `<blockquote>` element
pub struct Blockquote;

impl HtmlElement for Blockquote {
    fn tag() -> &'static str {
        "blockquote"
    }
}

/// HTML `<dd>` element
pub struct Dd;

impl HtmlElement for Dd {
    fn tag() -> &'static str {
        "dd"
    }
}

/// HTML `<div>` element
pub struct Div;

impl HtmlElement for Div {
    fn tag() -> &'static str {
        "div"
    }
}

/// HTML `<dl>` element
pub struct Dl;

impl HtmlElement for Dl {
    fn tag() -> &'static str {
        "dl"
    }
}

/// HTML `<dt>` element
pub struct Dt;

impl HtmlElement for Dt {
    fn tag() -> &'static str {
        "dt"
    }
}

/// HTML `<figcaption>` element
pub struct Figcaption;

impl HtmlElement for Figcaption {
    fn tag() -> &'static str {
        "figcaption"
    }
}

/// HTML `<figure>` element
pub struct Figure;

impl HtmlElement for Figure {
    fn tag() -> &'static str {
        "figure"
    }
}

/// HTML `<hr>` element
pub struct Hr;

impl HtmlElement for Hr {
    fn tag() -> &'static str {
        "hr"
    }
}

/// HTML `<li>` element
pub struct Li;

impl HtmlElement for Li {
    fn tag() -> &'static str {
        "li"
    }
}

/// HTML `<ol>` element
pub struct Ol;

impl HtmlElement for Ol {
    fn tag() -> &'static str {
        "ol"
    }
}

/// HTML `<p>` element
pub struct P;

impl HtmlElement for P {
    fn tag() -> &'static str {
        "p"
    }
}

/// HTML `<pre>` element
pub struct Pre;

impl HtmlElement for Pre {
    fn tag() -> &'static str {
        "pre"
    }
}

/// HTML `<ul>` element
pub struct Ul;

impl HtmlElement for Ul {
    fn tag() -> &'static str {
        "ul"
    }
}

// Inline text semantics

/// HTML `<a>` element
pub struct A;

impl HtmlElement for A {
    fn tag() -> &'static str {
        "a"
    }
}

/// HTML `<abbr>` element
pub struct Abbr;

impl HtmlElement for Abbr {
    fn tag() -> &'static str {
        "abbr"
    }
}

/// HTML `<b>` element
pub struct B;

impl HtmlElement for B {
    fn tag() -> &'static str {
        "b"
    }
}

/// HTML `<bdi>` element
pub struct Bdi;

impl HtmlElement for Bdi {
    fn tag() -> &'static str {
        "bdi"
    }
}

/// HTML `<bdo>` element
pub struct Bdo;

impl HtmlElement for Bdo {
    fn tag() -> &'static str {
        "bdo"
    }
}

/// HTML `<br>` element
pub struct Br;

impl HtmlElement for Br {
    fn tag() -> &'static str {
        "br"
    }
}

/// HTML `<cite>` element
pub struct Cite;

impl HtmlElement for Cite {
    fn tag() -> &'static str {
        "cite"
    }
}

/// HTML `<code>` element
pub struct Code;

impl HtmlElement for Code {
    fn tag() -> &'static str {
        "code"
    }
}

/// HTML `<data>` element
pub struct Data;

impl HtmlElement for Data {
    fn tag() -> &'static str {
        "data"
    }
}

/// HTML `<dfn>` element
pub struct Dfn;

impl HtmlElement for Dfn {
    fn tag() -> &'static str {
        "dfn"
    }
}

/// HTML `<em>` element
pub struct Em;

impl HtmlElement for Em {
    fn tag() -> &'static str {
        "em"
    }
}

/// HTML `<i>` element
pub struct I;

impl HtmlElement for I {
    fn tag() -> &'static str {
        "i"
    }
}

/// HTML `<kbd>` element
pub struct Kbd;

impl HtmlElement for Kbd {
    fn tag() -> &'static str {
        "kbd"
    }
}

/// HTML `<mark>` element
pub struct Mark;

impl HtmlElement for Mark {
    fn tag() -> &'static str {
        "mark"
    }
}

/// HTML `<q>` element
pub struct Q;

impl HtmlElement for Q {
    fn tag() -> &'static str {
        "q"
    }
}

/// HTML `<rb>` element
pub struct Rb;

impl HtmlElement for Rb {
    fn tag() -> &'static str {
        "rb"
    }
}

/// HTML `<rp>` element
pub struct Rp;

impl HtmlElement for Rp {
    fn tag() -> &'static str {
        "rp"
    }
}

/// HTML `<rt>` element
pub struct Rt;

impl HtmlElement for Rt {
    fn tag() -> &'static str {
        "rt"
    }
}

/// HTML `<rtc>` element
pub struct Rtc;

impl HtmlElement for Rtc {
    fn tag() -> &'static str {
        "rtc"
    }
}

/// HTML `<ruby>` element
pub struct Ruby;

impl HtmlElement for Ruby {
    fn tag() -> &'static str {
        "ruby"
    }
}

/// HTML `<s>` element
pub struct S;

impl HtmlElement for S {
    fn tag() -> &'static str {
        "s"
    }
}

/// HTML `<samp>` element
pub struct Samp;

impl HtmlElement for Samp {
    fn tag() -> &'static str {
        "samp"
    }
}

/// HTML `<small>` element
pub struct Small;

impl HtmlElement for Small {
    fn tag() -> &'static str {
        "small"
    }
}

/// HTML `<span>` element
pub struct Span;

impl HtmlElement for Span {
    fn tag() -> &'static str {
        "span"
    }
}

/// HTML `<strong>` element
pub struct Strong;

impl HtmlElement for Strong {
    fn tag() -> &'static str {
        "strong"
    }
}

/// HTML `<sub>` element
pub struct Sub;

impl HtmlElement for Sub {
    fn tag() -> &'static str {
        "sub"
    }
}

/// HTML `<sup>` element
pub struct Sup;

impl HtmlElement for Sup {
    fn tag() -> &'static str {
        "sup"
    }
}

/// HTML `<time>` element
pub struct Time;

impl HtmlElement for Time {
    fn tag() -> &'static str {
        "time"
    }
}

/// HTML `<u>` element
pub struct U;

impl HtmlElement for U {
    fn tag() -> &'static str {
        "u"
    }
}

/// HTML `<var>` element
pub struct Var;

impl HtmlElement for Var {
    fn tag() -> &'static str {
        "var"
    }
}

/// HTML `<wbr>` element
pub struct Wbr;

impl HtmlElement for Wbr {
    fn tag() -> &'static str {
        "wbr"
    }
}

// Image and multimedia

/// HTML `<area>` element
pub struct Area;

impl HtmlElement for Area {
    fn tag() -> &'static str {
        "area"
    }
}

/// HTML `<audio>` element
pub struct Audio;

impl HtmlElement for Audio {
    fn tag() -> &'static str {
        "audio"
    }
}

/// HTML `<img>` element
pub struct Img;

impl HtmlElement for Img {
    fn tag() -> &'static str {
        "img"
    }
}

/// HTML `<map>` element
pub struct Map;

impl HtmlElement for Map {
    fn tag() -> &'static str {
        "map"
    }
}

/// HTML `<track>` element
pub struct Track;

impl HtmlElement for Track {
    fn tag() -> &'static str {
        "track"
    }
}

/// HTML `<video>` element
pub struct Video;

impl HtmlElement for Video {
    fn tag() -> &'static str {
        "video"
    }
}

// Embedded content

/// HTML `<embed>` element
pub struct Embed;

impl HtmlElement for Embed {
    fn tag() -> &'static str {
        "embed"
    }
}

/// HTML `<iframe>` element
pub struct Iframe;

impl HtmlElement for Iframe {
    fn tag() -> &'static str {
        "iframe"
    }
}

/// HTML `<object>` element
pub struct Object;

impl HtmlElement for Object {
    fn tag() -> &'static str {
        "object"
    }
}

/// HTML `<param>` element
pub struct Param;

impl HtmlElement for Param {
    fn tag() -> &'static str {
        "param"
    }
}

/// HTML `<picture>` element
pub struct Picture;

impl HtmlElement for Picture {
    fn tag() -> &'static str {
        "picture"
    }
}

/// HTML `<source>` element
pub struct Source;

impl HtmlElement for Source {
    fn tag() -> &'static str {
        "source"
    }
}

// Scripting

/// HTML `<canvas>` element
pub struct Canvas;

impl HtmlElement for Canvas {
    fn tag() -> &'static str {
        "canvas"
    }
}

/// HTML `<noscript>` element
pub struct Noscript;

impl HtmlElement for Noscript {
    fn tag() -> &'static str {
        "noscript"
    }
}

/// HTML `<script>` element
pub struct Script;

impl HtmlElement for Script {
    fn tag() -> &'static str {
        "script"
    }
}

// Demarcating edits

/// HTML `<del>` element
pub struct Del;

impl HtmlElement for Del {
    fn tag() -> &'static str {
        "del"
    }
}

/// HTML `<ins>` element
pub struct Ins;

impl HtmlElement for Ins {
    fn tag() -> &'static str {
        "ins"
    }
}

// Table content

/// HTML `<caption>` element
pub struct Caption;

impl HtmlElement for Caption {
    fn tag() -> &'static str {
        "caption"
    }
}

/// HTML `<col>` element
pub struct Col;

impl HtmlElement for Col {
    fn tag() -> &'static str {
        "col"
    }
}

/// HTML `<colgroup>` element
pub struct Colgroup;

impl HtmlElement for Colgroup {
    fn tag() -> &'static str {
        "colgroup"
    }
}

/// HTML `<table>` element
pub struct Table;

impl HtmlElement for Table {
    fn tag() -> &'static str {
        "table"
    }
}

/// HTML `<tbody>` element
pub struct Tbody;

impl HtmlElement for Tbody {
    fn tag() -> &'static str {
        "tbody"
    }
}

/// HTML `<td>` element
pub struct Td;

impl HtmlElement for Td {
    fn tag() -> &'static str {
        "td"
    }
}

/// HTML `<tfoot>` element
pub struct Tfoot;

impl HtmlElement for Tfoot {
    fn tag() -> &'static str {
        "tfoot"
    }
}

/// HTML `<th>` element
pub struct Th;

impl HtmlElement for Th {
    fn tag() -> &'static str {
        "th"
    }
}

/// HTML `<thead>` element
pub struct Thead;

impl HtmlElement for Thead {
    fn tag() -> &'static str {
        "thead"
    }
}

/// HTML `<tr>` element
pub struct Tr;

impl HtmlElement for Tr {
    fn tag() -> &'static str {
        "tr"
    }
}

// Forms

/// HTML `<button>` element
pub struct Button;

impl HtmlElement for Button {
    fn tag() -> &'static str {
        "button"
    }
}

/// HTML `<datalist>` element
pub struct Datalist;

impl HtmlElement for Datalist {
    fn tag() -> &'static str {
        "datalist"
    }
}

/// HTML `<fieldset>` element
pub struct Fieldset;

impl HtmlElement for Fieldset {
    fn tag() -> &'static str {
        "fieldset"
    }
}

/// HTML `<form>` element
pub struct Form;

impl HtmlElement for Form {
    fn tag() -> &'static str {
        "form"
    }
}

/// HTML `<input>` element
pub struct Input;

impl HtmlElement for Input {
    fn tag() -> &'static str {
        "input"
    }
}

/// HTML `<label>` element
pub struct Label;

impl HtmlElement for Label {
    fn tag() -> &'static str {
        "label"
    }
}

/// HTML `<legend>` element
pub struct Legend;

impl HtmlElement for Legend {
    fn tag() -> &'static str {
        "legend"
    }
}

/// HTML `<meter>` element
pub struct Meter;

impl HtmlElement for Meter {
    fn tag() -> &'static str {
        "meter"
    }
}

/// HTML `<optgroup>` element
pub struct Optgroup;

impl HtmlElement for Optgroup {
    fn tag() -> &'static str {
        "optgroup"
    }
}

/// HTML `<option>` element
pub struct Option;

impl HtmlElement for Option {
    fn tag() -> &'static str {
        "option"
    }
}

/// HTML `<output>` element
pub struct Output;

impl HtmlElement for Output {
    fn tag() -> &'static str {
        "output"
    }
}

/// HTML `<progress>` element
pub struct Progress;

impl HtmlElement for Progress {
    fn tag() -> &'static str {
        "progress"
    }
}

/// HTML `<select>` element
pub struct Select;

impl HtmlElement for Select {
    fn tag() -> &'static str {
        "select"
    }
}

/// HTML `<textarea>` element
pub struct Textarea;

impl HtmlElement for Textarea {
    fn tag() -> &'static str {
        "textarea"
    }
}

// Interactive elements

/// HTML `<details>` element
pub struct Details;

impl HtmlElement for Details {
    fn tag() -> &'static str {
        "details"
    }
}

/// HTML `<dialog>` element
pub struct Dialog;

impl HtmlElement for Dialog {
    fn tag() -> &'static str {
        "dialog"
    }
}

/// HTML `<menu>` element
pub struct Menu;

impl HtmlElement for Menu {
    fn tag() -> &'static str {
        "menu"
    }
}

/// HTML `<summary>` element
pub struct Summary;

impl HtmlElement for Summary {
    fn tag() -> &'static str {
        "summary"
    }
}

// Web Components

/// HTML `<slot>` element
pub struct Slot;

impl HtmlElement for Slot {
    fn tag() -> &'static str {
        "slot"
    }
}

/// HTML `<template>` element
pub struct Template;

impl HtmlElement for Template {
    fn tag() -> &'static str {
        "template"
    }
}