pub trait PlanarSync{
    type PackedType;
    type PlanarType: Planar<PackedType = Self::PackedType>;
    type PlanarTypeHandle: PlanarHandle<Self::PlanarType>;
    type GpuPlanarType: GpuPlanar<PackedType = Self::PackedType, PlanarType = Self::PlanarType>;
}Required Associated Types§
type PackedType
type PlanarType: Planar<PackedType = Self::PackedType>
type PlanarTypeHandle: PlanarHandle<Self::PlanarType>
type GpuPlanarType: GpuPlanar<PackedType = Self::PackedType, PlanarType = Self::PlanarType>
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.