pub trait EditableTextExt:
IsA<EditableText>
+ Sealed
+ 'static {
// Provided methods
fn copy_text(&self, start_pos: i32, end_pos: i32) { ... }
fn cut_text(&self, start_pos: i32, end_pos: i32) { ... }
fn delete_text(&self, start_pos: i32, end_pos: i32) { ... }
fn paste_text(&self, position: i32) { ... }
fn set_text_contents(&self, string: &str) { ... }
}Provided Methods§
fn copy_text(&self, start_pos: i32, end_pos: i32)
fn cut_text(&self, start_pos: i32, end_pos: i32)
fn delete_text(&self, start_pos: i32, end_pos: i32)
fn paste_text(&self, position: i32)
fn set_text_contents(&self, string: &str)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".