pub trait Plot<This> {
type Properties;
// Required method
fn plot<F>(&mut self, this: This, function: F) -> &mut Self
where F: FnOnce(&mut Self::Properties) -> &mut Self::Properties;
}
Expand description
Overloaded plot
method
Required Associated Types§
Sourcetype Properties
type Properties
The properties associated to the plot
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.