pub trait TextEditingSurface: HasTextNode {
// Provided methods
fn is_editable_text(&self) -> bool { ... }
fn editable(&self, editable: bool) -> &Self { ... }
fn obscured(&self, obscured: bool) -> &Self { ... }
}Provided Methods§
fn is_editable_text(&self) -> bool
fn editable(&self, editable: bool) -> &Self
fn obscured(&self, obscured: bool) -> &Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".