pub trait ParamComponentPropsBuilder: AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlParamElement> {
    fn name(self, v: Option<&str>) -> Self { ... }
fn default_value<TValue>(self, v: Option<TValue>) -> Self
    where
        TValue: AsHtmlTextValue
, { ... }
fn value<TValue>(self, v: Option<TValue>) -> Self
    where
        TValue: AsHtmlTextValue
, { ... } }

Provided methods

Implementors