pub trait OptionComponentPropsBuilder: AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlOptionElement> {
    fn disabled(self, v: Option<bool>) -> Self { ... }
fn label(self, v: Option<&str>) -> Self { ... }
fn selected(self, v: Option<bool>) -> 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