usepco::data_types::Number;/// Witnesses that `Self` has the same memory layout as `T`, enabling the
/// zero-copy cast between `[Self]` and `[T::NumberType]` used by pco's encoder.
pubtraitTransparentPco<T> {}/// Binds a vec value type to its underlying pco `Number` representation.
pubtraitPco
where
Self: TransparentPco<Self::NumberType>,
{typeNumberType: Number;}