pub trait TdExtension: Sized + HasAttributes {
    // Provided methods
    fn colspan(self, value: impl IntoAttributeValue) -> Self { ... }
    fn rowspan(self, value: impl IntoAttributeValue) -> Self { ... }
}
Available on crate feature html only.

Provided Methods§

source

fn colspan(self, value: impl IntoAttributeValue) -> Self

source

fn rowspan(self, value: impl IntoAttributeValue) -> Self

Object Safety§

This trait is not object safe.

Implementors§