pub trait EnvelopePoint: Clone + PartialEq {
type X: Float + ToString;
type Y: Float + ToString;
// Required methods
fn get_x(&self) -> Self::X;
fn get_y(&self) -> Self::Y;
fn set_x(&mut self, _x: Self::X);
fn set_y(&mut self, _y: Self::Y);
fn new(_x: Self::X, _y: Self::Y) -> Self;
// Provided methods
fn get_curve(&self) -> f32 { ... }
fn set_curve(&mut self, _curve: f32) { ... }
}Expand description
EnvPoint must be implemented for any type that is used as a 2D point within the
EnvelopeEditor.
Required Associated Types§
Required Methods§
Provided 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.