[][src]Enum es_htmlform::types::InputType

pub enum InputType {
    Text,
    Password,
    Radio,
    Checkbox,
    Number,
    Range,
    Date,
    DateTime,
    Month,
    Week,
    Time,
    Url,
    Email,
    Tel,
    Color,
    File,
    Search,
    Button,
    Submit,
    Reset,
    Image,
    Hidden,
}

Different input types, use with Element::Input(). Used as value of the type attribute on an HTML input element.

Variants

Text
Password
Radio
Checkbox
Number
Range
Date
DateTime
Month
Week
Time
Url
Email
Tel
Color
File
Search
Button
Submit
Reset
Image
Hidden

Trait Implementations

impl Debug for InputType[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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