pub trait TextContentSurface: HasTextNode {
// Provided methods
fn text(&self, content: impl Into<String>) -> &Self { ... }
fn content(&self) -> String { ... }
}Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".