Trait FormExtension

Source
pub trait FormExtension: HasAttributes + Sized {
    // 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 { ... }
}

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§