pub(crate) trait TextControlElement: DerivedFrom<EventTarget> + DerivedFrom<Node> {
// Required methods
fn selection_api_applies(&self) -> bool;
fn has_selectable_text(&self) -> bool;
fn set_dirty_value_flag(&self, value: bool);
}
Required Methods§
fn selection_api_applies(&self) -> bool
fn has_selectable_text(&self) -> bool
fn set_dirty_value_flag(&self, value: bool)
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.