pub trait FormComponentPropsBuilder: Sized + AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlFormElement> {
    fn accept_charset(self, v: Option<&str>) -> Self { ... }
fn action(self, v: Option<&str>) -> Self { ... }
fn auto_complete(self, v: Option<&str>) -> Self { ... }
fn enc_type(self, v: Option<&str>) -> Self { ... }
fn method(self, v: Option<&str>) -> Self { ... }
fn name(self, v: Option<&str>) -> Self { ... }
fn no_validate(self, v: Option<bool>) -> Self { ... }
fn target(self, v: Option<&str>) -> Self { ... } }

Provided methods

Implementors