pub trait MeterComponentPropsBuilder: Sized + AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlElement> {
    fn form(self, v: Option<&str>) -> Self { ... }
    fn high(self, v: Option<f64>) -> Self { ... }
    fn low(self, v: Option<f64>) -> Self { ... }
    fn max<'a, T: Into<NumOrStr<'a>>>(self, v: Option<T>) -> Self { ... }
    fn min<'a, T: Into<NumOrStr<'a>>>(self, v: Option<T>) -> Self { ... }
    fn optimum(self, v: Option<f64>) -> Self { ... }
    fn default_value<TValue: AsHtmlTextValue>(self, v: Option<TValue>) -> Self { ... }
    fn value<TValue: AsHtmlTextValue>(self, v: Option<TValue>) -> Self { ... }
}