Trait PointConvert

Source
pub trait PointConvert {
    // Required method
    fn use_as<T>(&self) -> T
       where T: From<Point>,
             Point: From<Self>,
             Self: Copy;
}

Required Methods§

Source

fn use_as<T>(&self) -> T
where T: From<Point>, Point: From<Self>, Self: Copy,

Implementors§

Source§

impl<P> PointConvert for P
where P: Copy, Point: From<P>,