pub trait AccessibleImpl: ObjectImpl {
// Provided methods
fn platform_state(&self, state: AccessiblePlatformState) -> bool { ... }
fn bounds(&self) -> Option<(i32, i32, i32, i32)> { ... }
fn at_context(&self) -> Option<ATContext> { ... }
fn accessible_parent(&self) -> Option<Accessible> { ... }
fn first_accessible_child(&self) -> Option<Accessible> { ... }
fn next_accessible_sibling(&self) -> Option<Accessible> { ... }
}
Available on crate feature
v4_10
only.Provided Methods§
fn platform_state(&self, state: AccessiblePlatformState) -> bool
fn bounds(&self) -> Option<(i32, i32, i32, i32)>
fn at_context(&self) -> Option<ATContext>
fn accessible_parent(&self) -> Option<Accessible>
fn first_accessible_child(&self) -> Option<Accessible>
fn next_accessible_sibling(&self) -> Option<Accessible>
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.