pub trait ObjectComponentPropsBuilder: Sized + AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlObjectElement> {
    fn class_id(self, v: Option<&str>) -> Self { ... }
fn data(self, v: Option<&str>) -> Self { ... }
fn form(self, v: Option<&str>) -> Self { ... }
fn height<'a, T: Into<NumOrStr<'a>>>(self, v: Option<T>) -> Self { ... }
fn name(self, v: Option<&str>) -> Self { ... }
fn html_type(self, v: Option<&str>) -> Self { ... }
fn use_map(self, v: Option<&str>) -> Self { ... }
fn width<'a, T: Into<NumOrStr<'a>>>(self, v: Option<T>) -> Self { ... }
fn wmode(self, v: Option<&str>) -> Self { ... } }

Provided methods

Implementors