pub trait TableComponentPropsBuilder: AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlTableElement> {
    fn cell_padding<'a, T>(self, v: Option<T>) -> Self
    where
        T: Into<NumOrStr<'a>>
, { ... }
fn cell_spacing<'a, T>(self, v: Option<T>) -> Self
    where
        T: Into<NumOrStr<'a>>
, { ... }
fn summary(self, v: Option<&str>) -> Self { ... }
fn width<'a, T>(self, v: Option<T>) -> Self
    where
        T: Into<NumOrStr<'a>>
, { ... } }

Provided methods

Implementors