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 { ... }
}
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
Object Safety§
This trait is not object safe.