pub trait MtdExtension: HasAttributes + Sized {
    // Provided methods
    fn columnspan(self, value: impl IntoAttributeValue) -> Self { ... }
    fn rowspan(self, value: impl IntoAttributeValue) -> Self { ... }
}

Provided Methods§

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§