pub trait PxFlags: Copy {
    type Target;

    fn into_px(self) -> Self::Target;
    fn from_px(flags: Self::Target) -> Self;
}

Required Associated Types

The target physx_sys flags type.

Required Methods

Convert to Px type.

Convert to BitFlags<> type.

Implementations on Foreign Types

Implementors