physx 0.8.0

High-level Rust interface for Nvidia PhysX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Author: Tom Olsson <tom.olsson@embark-studios.com>
// Copyright © 2019, Embark Studios, all rights reserved.
// Created: 16 April 2019

#![warn(clippy::all)]

/*!

Extension trait for Into to use for local enums
 */

pub trait ToFlags<T> {
    fn to_flags(self) -> T;
}