Trait ThExtension

Source
pub trait ThExtension: HasAttributes + Sized {
    // 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§

Source

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

Source

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

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§