pub trait EmbedComponentPropsBuilder: Sized + AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlEmbedElement> {
fn width<'a, T: Into<NumOrStr<'a>>>(self, v: Option<T>) -> Self { ... }
fn height<'a, T: Into<NumOrStr<'a>>>(self, v: Option<T>) -> Self { ... }
fn src(self, v: Option<&str>) -> Self { ... }
fn html_type(self, v: Option<&str>) -> Self { ... }
}