Trait AXChart

Source
pub unsafe trait AXChart: NSObjectProtocol {
    // Provided methods
    unsafe fn accessibilityChartDescriptor(
        &self,
    ) -> Option<Retained<AXChartDescriptor>>
       where Self: Sized + Message { ... }
    unsafe fn setAccessibilityChartDescriptor(
        &self,
        accessibility_chart_descriptor: Option<&AXChartDescriptor>,
    )
       where Self: Sized + Message { ... }
}
Available on crate feature AXAudiograph only.
Expand description

Chart or graph container elements may adopt this protocol to enable Audio Graph support.

See also Apple’s documentation

Provided Methods§

Source

unsafe fn accessibilityChartDescriptor( &self, ) -> Option<Retained<AXChartDescriptor>>
where Self: Sized + Message,

Source

unsafe fn setAccessibilityChartDescriptor( &self, accessibility_chart_descriptor: Option<&AXChartDescriptor>, )
where Self: Sized + Message,

Trait Implementations§

Source§

impl ProtocolType for dyn AXChart

Source§

const NAME: &'static str = "AXChart"

The name of the Objective-C protocol that this type represents. Read more
Source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
Source§

impl<T> ImplementedBy<T> for dyn AXChart
where T: ?Sized + Message + AXChart,

Implementations on Foreign Types§

Source§

impl<T> AXChart for ProtocolObject<T>
where T: ?Sized + AXChart,

Implementors§