Trait nodit::nodit::map::PointType

source ·
pub trait PointType: Ord + Copy + DiscreteFinite { }
Expand description

The marker trait for valid point types, a blanket implementation is provided for all types which implement this traits’ super-traits so you shouln’t need to implement this yourself.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I> PointType for I
where I: Ord + Copy + DiscreteFinite,