pub trait FormExtension: Sized + HasAttributes {
    // Provided methods
    fn action(self, value: impl IntoAttributeValue) -> Self { ... }
    fn autocomplete(self, value: impl IntoAttributeValue) -> Self { ... }
    fn enctype(self, value: impl IntoAttributeValue) -> Self { ... }
    fn method(self, value: impl IntoAttributeValue) -> Self { ... }
    fn name(self, value: impl IntoAttributeValue) -> Self { ... }
    fn novalidate(self, value: impl IntoAttributeValue) -> Self { ... }
    fn target(self, value: impl IntoAttributeValue) -> Self { ... }
}
Available on crate feature html only.

Provided Methods§

source

fn action(self, value: impl IntoAttributeValue) -> Self

source

fn autocomplete(self, value: impl IntoAttributeValue) -> Self

source

fn enctype(self, value: impl IntoAttributeValue) -> Self

source

fn method(self, value: impl IntoAttributeValue) -> Self

source

fn name(self, value: impl IntoAttributeValue) -> Self

source

fn novalidate(self, value: impl IntoAttributeValue) -> Self

source

fn target(self, value: impl IntoAttributeValue) -> Self

Object Safety§

This trait is not object safe.

Implementors§