pub type AXNodeId<'a> = Cow<'a, str>;
Unique accessibility node identifier.
pub enum AXNodeId<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.