Struct cdp::accessibility::AxValue
[−]
[src]
pub struct AxValue<'a> { pub ty: AxValueType, pub value: Option<Value>, pub related_nodes: Option<Vec<AxRelatedNode<'a>>>, pub sources: Option<Vec<AxValueSource<'a>>>, }
[Experimental] A single computed AX property.
Fields
ty: AxValueType
The type of this value.
value: Option<Value>
The computed value of this property.
One or more related nodes, if applicable.
sources: Option<Vec<AxValueSource<'a>>>
The sources which contributed to the computation of this property.
Trait Implementations
impl<'a> Clone for AxValue<'a>
[src]
fn clone(&self) -> AxValue<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more