Struct chrome_remote_interface_model::accessibility::AxValueSource[][src]

pub struct AxValueSource { /* fields omitted */ }
This is supported on crate features experimental and Accessibility and DOM only.

A single source for a computed AX property.

Implementations

impl AxValueSource[src]

pub fn builder() -> AxValueSourceBuilder[src]

pub fn type(&self) -> &AxValueSourceType[src]

What type of source this is.

pub fn value(&self) -> Option<&AxValue>[src]

The value of this property source.

pub fn attribute(&self) -> Option<&String>[src]

The name of the relevant attribute, if any.

pub fn attribute_value(&self) -> Option<&AxValue>[src]

The value of the relevant attribute, if any.

pub fn superseded(&self) -> Option<&bool>[src]

Whether this source is superseded by a higher priority source.

pub fn native_source(&self) -> Option<&AxValueNativeSourceType>[src]

The native markup source for this value, e.g. a

pub fn native_source_value(&self) -> Option<&AxValue>[src]

The value, such as a node or node list, of the native source.

pub fn invalid(&self) -> Option<&bool>[src]

Whether the value for this property is invalid.

pub fn invalid_reason(&self) -> Option<&String>[src]

Reason for the value being invalid, if it is.

Trait Implementations

impl Clone for AxValueSource[src]

impl Debug for AxValueSource[src]

impl<'de> Deserialize<'de> for AxValueSource[src]

impl Serialize for AxValueSource[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.