Skip to main content

AXNodeId

Type Alias AXNodeId 

Source
pub type AXNodeId<'a> = Cow<'a, str>;
Expand description

Unique accessibility node identifier.

Aliased Type§

pub enum AXNodeId<'a> {
    Borrowed(&'a str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'a str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.