pub trait EditableTextExtManual:
IsA<EditableText>
+ Sealed
+ 'static {
// Provided method
fn insert_text(&self, string: &str, position: i32) -> i32 { ... }
}Provided Methods§
Sourcefn insert_text(&self, string: &str, position: i32) -> i32
fn insert_text(&self, string: &str, position: i32) -> i32
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".