pub trait AccessibleTextExt:
IsA<AccessibleText>
+ Sealed
+ 'static {
// Provided methods
fn update_caret_position(&self) { ... }
fn update_contents(
&self,
change: AccessibleTextContentChange,
start: u32,
end: u32,
) { ... }
fn update_selection_bound(&self) { ... }
}
Available on crate feature
v4_14
only.Provided Methods§
fn update_caret_position(&self)
fn update_contents( &self, change: AccessibleTextContentChange, start: u32, end: u32, )
fn update_selection_bound(&self)
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.