[][src]Struct arwa::html::HtmlFormElement

pub struct HtmlFormElement { /* fields omitted */ }

Methods

impl HtmlFormElement[src]

pub fn accept_charset(&self) -> String[src]

pub fn set_accept_charset(&self, accept_charset: &str)[src]

pub fn action(&self) -> String[src]

pub fn set_action(&self, action: &str)[src]

pub fn encoding(&self) -> String[src]

pub fn set_encoding(&self, encoding: &str)[src]

pub fn no_validate(&self) -> bool[src]

pub fn set_no_validate(&self, no_validate: bool)[src]

pub fn target(&self) -> String[src]

pub fn set_target(&self, target: &str)[src]

pub fn check_validity(&self) -> bool[src]

pub fn report_validity(&self) -> bool[src]

pub fn reset(&self)[src]

pub fn autocomplete(&self) -> AutoComplete[src]

pub fn set_autocomplete(&self, autocomplete: AutoComplete)[src]

pub fn method(&self) -> FormMethod[src]

pub fn set_method(&self, method: FormMethod)[src]

pub fn elements(&self) -> FormControlElements[src]

pub fn submit(&self)[src]

Trait Implementations

impl AsRef<Element> for HtmlFormElement[src]

impl AsRef<EventTarget> for HtmlFormElement[src]

impl AsRef<HtmlElement> for HtmlFormElement[src]

impl AsRef<HtmlFormElement> for HtmlFormElement[src]

impl AsRef<Node> for HtmlFormElement[src]

impl Clone for HtmlFormElement[src]

impl Element for HtmlFormElement[src]

impl From<HtmlFormElement> for HtmlFormElement[src]

impl From<HtmlFormElement> for GenericHtmlElement[src]

impl From<HtmlFormElement> for GenericElement[src]

impl From<HtmlFormElement> for GenericNode[src]

impl GlobalEventHandlers for HtmlFormElement[src]

impl HtmlElement for HtmlFormElement[src]

impl Node for HtmlFormElement[src]

impl TryFrom<GenericElement> for HtmlFormElement[src]

type Error = InvalidCast<GenericElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericHtmlElement> for HtmlFormElement[src]

type Error = InvalidCast<GenericHtmlElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericNode> for HtmlFormElement[src]

type Error = InvalidCast<GenericNode>

The type returned in the event of a conversion error.

impl Write for HtmlFormElement[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.