pub trait AutomationExt: LayoutControl + Sized {
// Provided methods
fn automation_name(self, value: impl Into<String>) -> Self { ... }
fn automation_id(self, value: impl Into<String>) -> Self { ... }
fn automation_heading_level(self, value: AutomationHeadingLevel) -> Self { ... }
}Expand description
Adds UI Automation metadata to a native control.
Provided Methods§
fn automation_name(self, value: impl Into<String>) -> Self
fn automation_id(self, value: impl Into<String>) -> Self
fn automation_heading_level(self, value: AutomationHeadingLevel) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".