Trait Flow2DElement

Source
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§

Source

fn get_x(&self) -> Option<f64>

Source

fn get_y(&self) -> Option<f64>

Source

fn get_width(&self) -> Option<f64>

Source

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.

Implementors§