1 2 3 4 5 6 7 8 9 10
use pco::data_types::Number; pub trait TransparentPco<T> {} pub trait Pco where Self: TransparentPco<Self::NumberType>, { type NumberType: Number; }