FullXY

Trait FullXY 

Source
pub trait FullXY:
    GetXY
    + SetXY
    + NewXY
    + Clone
    + PartialEq
    + Ord { }
Expand description

Composite Trait for XY use cases

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§

Source§

impl<T> FullXY for T
where T: GetXY + SetXY + NewXY + Clone + PartialEq + Ord,