pub trait Flow2DElement: Flow2D {
// Provided methods
fn get_x(&self) -> Option<f64> { ... }
fn get_y(&self) -> Option<f64> { ... }
fn get_width(&self) -> Option<f64> { ... }
fn get_height(&self) -> Option<f64> { ... }
}
Provided Methods§
fn get_x(&self) -> Option<f64>
fn get_y(&self) -> Option<f64>
fn get_width(&self) -> Option<f64>
fn get_height(&self) -> Option<f64>
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.