pub unsafe trait AXDataAxisDescriptor: NSCopying {
// Provided methods
unsafe fn title(&self) -> Retained<NSString>
where Self: Sized + Message { ... }
unsafe fn setTitle(&self, title: &NSString)
where Self: Sized + Message { ... }
unsafe fn attributedTitle(&self) -> Retained<NSAttributedString>
where Self: Sized + Message { ... }
unsafe fn setAttributedTitle(&self, attributed_title: &NSAttributedString)
where Self: Sized + Message { ... }
}Available on crate feature
AXAudiograph only.Expand description
Describes a data axis for the chart (e.g. X, Y, etc.) Each AXChart requires at least two AXDataAxis objects to describe, at minimum, and X and a Y axis.
See also Apple’s documentation
Provided Methods§
Sourceunsafe fn attributedTitle(&self) -> Retained<NSAttributedString>
unsafe fn attributedTitle(&self) -> Retained<NSAttributedString>
An attributed version of the title of this axis.
When set, this will be used instead of title.
Sourceunsafe fn setAttributedTitle(&self, attributed_title: &NSAttributedString)
unsafe fn setAttributedTitle(&self, attributed_title: &NSAttributedString)
Setter for attributedTitle.
This is copied when set.
Trait Implementations§
impl<T> ImplementedBy<T> for dyn AXDataAxisDescriptor
Source§impl ProtocolType for dyn AXDataAxisDescriptor
impl ProtocolType for dyn AXDataAxisDescriptor
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".