pub trait ThExtension: Sized + HasAttributes {
// Provided methods
fn abbr(self, value: impl IntoAttributeValue) -> Self { ... }
fn colspan(self, value: impl IntoAttributeValue) -> Self { ... }
fn rowspan(self, value: impl IntoAttributeValue) -> Self { ... }
fn scope(self, value: impl IntoAttributeValue) -> Self { ... }
}
Provided Methods§
fn abbr(self, value: impl IntoAttributeValue) -> Self
fn colspan(self, value: impl IntoAttributeValue) -> Self
fn rowspan(self, value: impl IntoAttributeValue) -> Self
fn scope(self, value: impl IntoAttributeValue) -> Self
Object Safety§
This trait is not object safe.