[][src]Enum paige::Tag

pub enum Tag {
    A,
    Abbr,
    Acronym,
    Address,
    Applet,
    Area,
    Article,
    Aside,
    Audio,
    B,
    Base,
    Basefont,
    Bdi,
    Bdo,
    Big,
    Blockquote,
    Body,
    Br,
    Button,
    Canvas,
    Caption,
    Center,
    Cite,
    Code,
    Col,
    Colgroup,
    Data,
    Datalist,
    Dd,
    Del,
    Details,
    Dfn,
    Dialog,
    Dir,
    Div,
    Dl,
    Dt,
    Em,
    Embed,
    Fieldset,
    FigCaption,
    Figure,
    Font,
    Footer,
    Form,
    Frame,
    Frameset,
    H1,
    Head,
    Header,
    Hr,
    Html,
    I,
    IFrame,
    Img,
    Input,
    Ins,
    Kbd,
    Label,
    Legend,
    Li,
    Link,
    Main,
    Map,
    Mark,
    Meta,
    Meter,
    Nav,
    Noframes,
    Noscript,
    Object,
    Ol,
    Optgroup,
    Option_,
    Output,
    P,
    Param,
    Picture,
    Pre,
    Progress,
    Q,
    Rp,
    Rt,
    Ruby,
    S,
    Samp,
    Script,
    Section,
    Select,
    Small,
    Source,
    Span,
    Strike,
    Strong,
    Style,
    Sub,
    Summary,
    Sup,
    Svg,
    Table,
    Tbody,
    Td,
    Template,
    TextArea,
    Tfoot,
    Th,
    Thead,
    Time,
    Title,
    Tr,
    Track,
    Tt,
    U,
    Ul,
    Var,
    Video,
    Wbr,
}

Variants

A
Abbr
Acronym
Address
Applet
Area
Article
Aside
Audio
B
Base
Basefont
Bdi
Bdo
Big
Blockquote
Body
Br
Button
Canvas
Caption
Center
Cite
Code
Col
Colgroup
Data
Datalist
Dd
Del
Details
Dfn
Dialog
Dir
Div
Dl
Dt
Em
Embed
Fieldset
FigCaption
Figure
Font
Footer
Form
Frame
Frameset
H1
Head
Header
Hr
Html
I
IFrame
Img
Input
Ins
Kbd
Label
Legend
Li
Main
Map
Mark
Meta
Meter
Nav
Noframes
Noscript
Object
Ol
Optgroup
Option_
Output
P
Param
Picture
Pre
Progress
Q
Rp
Rt
Ruby
S
Samp
Script
Section
Select
Small
Source
Span
Strike
Strong
Style
Sub
Summary
Sup
Svg
Table
Tbody
Td
Template
TextArea
Tfoot
Th
Thead
Time
Title
Tr
Track
Tt
U
Ul
Var
Video
Wbr

Methods

impl Tag[src]

pub fn make_element(self) -> El[src]

Consumes this Tag and returns an El.

pub fn attributes(self, attrs: &[Attr]) -> El[src]

Consumes a Tag and returns an El with the specified attributes.

pub fn style(self, props: &[Prop]) -> El[src]

Consumes a Tag and returns an El with the specified style properties.

pub fn content(self, content: &[El]) -> El[src]

Consumes a Tag and returns an El with the specified content (children).

Trait Implementations

impl From<Tag> for String[src]

Auto Trait Implementations

impl RefUnwindSafe for Tag

impl Send for Tag

impl Sync for Tag

impl Unpin for Tag

impl UnwindSafe for Tag

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.